for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EnergieProduction\Chart\Criterias;
abstract class Builder implements Criteria {
protected $content;
public function __construct($content)
{
$this->content = $content;
}
public function render()
return [lcfirst(class_basename(get_class($this))) => $this->content];