for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Wikibase\DataModel\Fixtures;
use Hashable;
/**
* @license GPL-2.0+
* @author Jeroen De Dauw < [email protected] >
*/
class MutableHashable implements Hashable {
public $text = '';
public function getHash() {
return sha1( __CLASS__ . $this->text );
}