for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpUnitGen\Model\PropertyTrait;
/**
* Trait StaticTrait.
*
* @author Paul Thébaud <[email protected]>.
* @copyright 2017-2018 Paul Thébaud <[email protected]>.
* @license https://opensource.org/licenses/MIT The MIT license.
* @link https://github.com/paul-thebaud/phpunit-generator
* @since Class available since Release 2.0.0.
*/
trait StaticTrait
{
* @var bool $isStatic A boolean describing if it is static.
protected $isStatic = false;
* @param bool $isStatic The new static value to set.
public function setIsStatic(bool $isStatic): void
$this->isStatic = $isStatic;
}
* @return bool True if it is static.
public function isStatic(): bool
return $this->isStatic;