mirror of
https://github.com/ambieco/scribe.git
synced 2026-04-02 14:21:10 +08:00
* 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
18 lines
261 B
PHP
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';
|
|
}
|