for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This software package is licensed under `AGPL-3.0-only, proprietary` license[s].
*
* @package maslosoft/manganel
* @license AGPL-3.0-only, proprietary
* @copyright Copyright (c) Peter Maselkowski <[email protected]>
* @link https://maslosoft.com/manganel/
*/
namespace Maslosoft\Manganel\Meta;
* ManganTypeAnnotation
* @author Piotr Maselkowski <pmaselkowski at gmail.com>
abstract class ManganelTypeAnnotation extends ManganelAnnotation
{
* Annotations entity, it can be either class, property, or method
* Its concrete annotation implementation responsibility to decide what to do with it.
* @return DocumentTypeMeta
public function getEntity()
return parent::getEntity();
}