for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Bigwhoop\Trumpet\CodeParsing\Php;
trait SourceTrait
{
private $source = '';
public function setSource(string $source)
$this->source = $source;
}
public function getSource(): string
return $this->source;