Passed
Push — main ( c84275...1d7014 )
by Gabriel
03:41
created

tests/fixtures/Dto/Timestampable.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace ByTIC\DataObjects\Tests\Fixtures\Dto;
4
5
use ByTIC\DataObjects\BaseDto;
6
use ByTIC\DataObjects\Behaviors\Timestampable\TimestampableTrait;
7
8
/**
9
 * Class Timestampable
10
 * @package ByTIC\DataObjects\Tests\Fixtures\Dto
11
 */
12
class Timestampable extends BaseDto
13
{
14
    use TimestampableTrait;
0 ignored issues
show
The trait ByTIC\DataObjects\Behavi...able\TimestampableTrait requires the property $timestamp which is not provided by ByTIC\DataObjects\Tests\Fixtures\Dto\Timestampable.
Loading history...
15
16
    /**
17
     * @var string
18
     */
19
    static protected $createTimestamps = ['created'];
20
21
    /**
22
     * @var string
23
     */
24
    static protected $updateTimestamps = ['modified'];
25
}
26