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\Post\PostData; | |
use DateTimeImmutable; | |
use Smalldb\CodeCooker\Annotation\GeneratedClass; | |
/** | |
* @GeneratedClass | |
* @see \Smalldb\StateMachine\Test\Example\Post\PostProperties | |
*/ | |
interface PostData | |
{ | |
public function getId(): ?int; | |
public function getTitle(): string; | |
public function getSlug(): string; | |
public function getSummary(): string; | |
public function getContent(): string; | |
public function getPublishedAt(): DateTimeImmutable; | |
public function getAuthorId(): int; | |
public function getCommentCount(): ?int; | |
} | |