Code Coverage  | 
      ||||||||||
Classes and Traits  | 
       Functions and Methods  | 
       Lines  | 
      ||||||||
| Total | n/a  | 
       0 / 0  | 
       n/a  | 
       0 / 0  | 
       CRAP | n/a  | 
       0 / 0  | 
      |||
| <?php declare(strict_types = 1); | |
| // | |
| // Generated by Smalldb\CodeCooker\Generator\DtoGenerator. | |
| // Do NOT edit! All changes will be lost! | |
| // | |
| // | |
| namespace Smalldb\StateMachine\Test\Example\SupervisorProcess\SupervisorProcessData; | |
| use DateTimeImmutable; | |
| use Smalldb\CodeCooker\Annotation\GeneratedClass; | |
| /** | |
| * @GeneratedClass | |
| * @see \Smalldb\StateMachine\Test\Example\SupervisorProcess\SupervisorProcessProperties | |
| */ | |
| interface SupervisorProcessData | |
| { | |
| public function getId(): ?int; | |
| public function getState(): string; | |
| public function getCommand(): string; | |
| public function getCreatedAt(): DateTimeImmutable; | |
| public function getModifiedAt(): DateTimeImmutable; | |
| public function getMemoryLimit(): ?int; | |
| public function getArgs(): ?array; | |
| } | |