for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Clippings\Freezable;
/**
* @author Haralan Dobrev <[email protected]>
* @copyright 2014, Clippings Ltd.
* @license http://spdx.org/licenses/BSD-3-Clause
*/
trait FreezableSimpleTrait
{
use FreezableTrait;
private $frozen = false;
* @{inheritdoc}
public function isFrozen()
return $this->frozen;
}
private function setFrozen($frozen)
$this->frozen = (bool) $frozen;
return $this;