for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* AbstractAnnotation.php
*
* Common functions for Jaxon annotations.
* @package jaxon-annotations
* @author Thierry Feuzeu <[email protected]>
* @copyright 2022 Thierry Feuzeu <[email protected]>
* @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
* @link https://github.com/jaxon-php/jaxon-annotations
*/
namespace Jaxon\Annotations\Annotation;
use Jaxon\App\Metadata\Metadata;
use mindplay\annotations\Annotation;
use mindplay\annotations\IAnnotationParser;
abstract class AbstractAnnotation extends Annotation implements IAnnotationParser
{
* Save the annotation value
* @param Metadata $xMetadata
* @param string $sMethod
* @return void
abstract public function saveValue(Metadata $xMetadata, string $sMethod = '*'): void;
}