for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace pjpawel\Magis\Helper;
/**
* @author Paweł Podgórski <[email protected]>
*/
class Script extends AbstractComponent
{
private string $script;
public function __construct(string $script)
$this->script = $script;
}
public function show(): string
return '<script>' . $this->script . '</script>';
public static function new(string $script): self
return new self($script);