for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Karma\Formatters;
use Karma\Formatter;
class Rules implements Formatter
{
private
$rules;
public function __construct(array $rules)
$this->rules = $rules;
}
public function format($value)
// TODO
This check looks TODO comments that have been left in the code.
TODO
``TODO``s show that something is left unfinished and should be attended to.
return $value;
This check looks
TODO
comments that have been left in the code.``TODO``s show that something is left unfinished and should be attended to.