for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* Copyright (c) Nate Brunette.
* Distributed under the MIT License (http://opensource.org/licenses/MIT)
*/
declare(strict_types=1);
namespace Tebru\Gson\Annotation;
use Tebru\AnnotationReader\AbstractAnnotation;
/**
* Class Since
*
* Used to exclude classes or properties that should not be serialized if the version number
* is less than the @Since value. Will not be used if version number is not defined on the
* builder.
* @author Nate Brunette <[email protected]>
* @Annotation
* @Target({"CLASS", "PROPERTY", "METHOD"})
class Since extends AbstractAnnotation
{
* Initialize annotation data
protected function init(): void
$this->value = (string)$this->getValue();
}