for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Subreality\Dilmun\Tests;
class TestClass
{
private $test_property = false;
public function getTestProperty()
return $this->test_property;
}
public function setTestProperty($test_property)
$this->test_property = $test_property;
public function toggleTestProperty()
$this->test_property = !$this->test_property;