1 | <?php |
||
4 | class PdoValidAtDateTimeCouponSheetsFactory |
||
5 | { |
||
6 | |||
7 | /** |
||
8 | * @var PDOStatement |
||
9 | */ |
||
10 | public $stmt; |
||
11 | |||
12 | |||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | public $php_class; |
||
17 | |||
18 | |||
19 | /** |
||
20 | * @param \PDO $pdo |
||
21 | * @param string $sheets_table |
||
22 | * @param string $coupons_table |
||
23 | * @param string $php_class |
||
24 | */ |
||
25 | public function __construct( \PDO $pdo, $sheets_table, $coupons_table, $php_class = null) |
||
50 | |||
51 | |||
52 | /** |
||
53 | * @return ArrayIterator |
||
54 | */ |
||
55 | public function __invoke( \DateTimeInterface $when, $php_class = null ) |
||
68 | |||
69 | } |
||
70 | |||
71 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..