update deps & install rector

This commit is contained in:
Dominik Liebler
2019-12-14 12:50:05 +01:00
parent 04acce6759
commit 579a5ac946
87 changed files with 2432 additions and 786 deletions

View File

@@ -8,16 +8,11 @@ namespace DesignPatterns\Behavioral\Command;
*/
class HelloCommand implements Command
{
/**
* @var Receiver
*/
private $output;
private Receiver $output;
/**
* Each concrete command is built with different receivers.
* There can be one, many or completely no receivers, but there can be other commands in the parameters
*
* @param Receiver $console
*/
public function __construct(Receiver $console)
{