for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace FForattini\Btrieve\Rule;
abstract class Rule
{
protected $length;
public function setLength($n)
$this->length = $n;
}
public function getLength()
return $this->length;