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;
final class PhpFunction
{
use FullyQualifiedNameTrait;
use SourceTrait;
public function __construct(string $name, string $source)
$this->name = $name;
$this->source = $source;
}