coupon-admin/vendor/zircote/swagger-php/tests/Fixtures/InheritProperties/Ancestor.php

16 lines
208 B
PHP
Raw Normal View History

2021-11-18 09:57:04 +00:00
<?php declare(strict_types=1);
namespace OpenApi\Tests\Fixtures;
/**
* An intermediate class
*/
class Ancestor extends GrandAncestor
{
/**
* Without annotations
*/
public $firstname;
}