Skip to content

Commit 0964fe7

Browse files
author
Vítězslav Dvořák
committed
strict types update
1 parent 2090eed commit 0964fe7

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

src/SpojeNet/PohodaSQL/Agenda.php

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,6 @@ class Agenda extends \Ease\SQL\Engine
120120
*/
121121
public $struct = [];
122122

123-
/**
124-
* DatCreate column name.
125-
*/
126-
public string $createdColumn;
127-
128123
/**
129124
* DatSave column name.
130125
*/
@@ -139,7 +134,7 @@ class Agenda extends \Ease\SQL\Engine
139134
public function setUp($options = []): bool
140135
{
141136
$this->setKeyColumn(\array_key_exists('ID', $this->struct) ? 'ID' : null);
142-
$this->createdColumn = \array_key_exists('DatCreate', $this->struct) ? 'DatCreate' : null;
137+
$this->createColumn = \array_key_exists('DatCreate', $this->struct) ? 'DatCreate' : null;
143138
$this->lastModifiedColumn = \array_key_exists('DatSave', $this->struct) ? 'DatSave' : null;
144139
$this->nameColumn = \array_key_exists('IDS', $this->struct) ? 'IDS' : null;
145140
$setUp = parent::setUp($options);

0 commit comments

Comments
 (0)