for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* @author : Korotkov Danila <[email protected]>
* @license https://mit-license.org/ MIT
*/
namespace Fundamental\Delegation;
* Class Program
class Program implements ProgramInterface
{
* @var string
private $type;
* Program constructor.
* @param $type
public function __construct(string $type)
$this->type = $type;
}
* @return mixed
public function getType(): string
return $this->type;