for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Nozavroni/Collections.
*
* Just another collections library for PHP5.6+.
* @version {version}
* @copyright Copyright (c) 2016 Luke Visinoni <[email protected]>
* @author Luke Visinoni <[email protected]>
* @license https://github.com/deni-zen/csvelte/blob/master/LICENSE The MIT License (MIT)
*/
namespace Noz\Traits;
trait IsImmutable
{
protected $mutable = false;
public function isReadOnly()
return $this->mutable;
}