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 Behavioral\Command;
* Trait CommandTrait
* @package Behavioral\Command
trait CommandTrait
{
* @param DeviceInterface $device
* @param TypeInterface $type
public function execute(DeviceInterface $device, TypeInterface $type): void
$device->execute($type);
}