Files
scribe/tests/Fixtures/TestModel.php
Tobias van Beek 6b1c502758 Adddocblockhandling (#192)
* Add the handling for a @transformer @transformercollection or @result tag in the method docblock

* Update the readme to document the @transform, @transformercollection and @response tag

* Fix the styleci issues

* Apply patch form styleci

* Add a transformermodel tag and support PHP 5

* Fix the version without a modeltag

* Always use the transformermodel tag and a codestyle issue
2017-05-29 17:14:38 +02:00

18 lines
261 B
PHP

<?php
namespace Mpociot\ApiDoc\Tests\Fixtures;
/**
* A demo test model.
*
* @author Tobias van Beek <t.vanbeek@tjvb.nl>
*/
class TestModel
{
public $id = 1;
public $name = 'TestName';
public $description = 'Welcome on this test versions';
}