Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

3.0.0 sql type hints #373

Open
wants to merge 49 commits into
base: 3.0.0
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
91d68c4
Added some typehints
guidofaecke Mar 14, 2019
42e8770
Added access modifiers for class constants
arueckauer Mar 16, 2019
ae5c556
Updated return type declarations
arueckauer Mar 16, 2019
4a084fa
Use ::class instead
arueckauer Mar 16, 2019
bda3610
Use short list syntax
arueckauer Mar 16, 2019
fdc6130
Use origin function
arueckauer Mar 16, 2019
4524104
Removed misusage of array_push()
arueckauer Mar 16, 2019
a55d7fd
Removed assignments where written value is same as default one
arueckauer Mar 16, 2019
18986fc
Removed superfluous null assignments on class property initialization
arueckauer Mar 16, 2019
e4868fa
Write single-line comments with @var as one-liners
arueckauer Mar 16, 2019
b9ce140
Updated file header comment, added strict_types declaration
arueckauer Mar 16, 2019
6ebaf9d
Removed empty comment lines
arueckauer Mar 16, 2019
4ec4ee5
Updated argument and return type declarations, removed method comment…
arueckauer Mar 16, 2019
788d1bc
Treat string class properties as not nullable where possible
arueckauer Mar 16, 2019
f97e6f7
Comment tags @param, @throws and @return should not be aligned or con…
arueckauer Mar 16, 2019
9565442
Revert short list syntax where incompatible
arueckauer Mar 16, 2019
9af735e
Ignore IDE files
arueckauer Mar 16, 2019
e057005
Ensure declarations are compatible with super, noted where type hints…
arueckauer Mar 16, 2019
2c385f7
Updated return type in DocBlock
arueckauer Mar 16, 2019
c2ab9c3
Fixed case mismatch
arueckauer Mar 16, 2019
0f8f3f4
Use self class referencing
arueckauer Mar 16, 2019
f4feef2
Use single quotes
arueckauer Mar 16, 2019
6000d50
Remove unnecessary parentheses
arueckauer Mar 16, 2019
5866062
Remove unnecessary type casting, as the argument is of needed type
arueckauer Mar 16, 2019
31c14f6
Place namespace definition on its own line
arueckauer Mar 16, 2019
5f115d1
Use compact()
arueckauer Mar 16, 2019
a60c5c2
Converted elseif to if-branch (clearer intention, lower complexity nu…
arueckauer Mar 16, 2019
402e21b
Define one parameter per line in multi-line function declarations
arueckauer Mar 16, 2019
552623f
Removed unused imports
arueckauer Mar 16, 2019
a5d9333
Fixed typo
arueckauer Mar 16, 2019
471da0c
There must be exactly one space after a type cast
arueckauer Mar 16, 2019
636167e
Nullable and optional arguments, which are marked as = null, must hav…
arueckauer Mar 16, 2019
73c4a59
Removed comments which do not add valuable information
arueckauer Mar 16, 2019
5bb0ad8
Revert short list syntax where incompatible
arueckauer Mar 16, 2019
aca883d
Removed duplicate blank lines
arueckauer Mar 16, 2019
1c0ddf4
Merge pull request #1 from guidofaecke/3.0.0_SQL_typeHints
guidofaecke Mar 16, 2019
f94abb7
Resolving merge conflict
guidofaecke Mar 17, 2019
25d7ee3
Merge remote-tracking branch 'origin/3.0.0' into 3.0.0_SQL_typeHints
guidofaecke Mar 17, 2019
677d31a
Resolving merge conflict
guidofaecke Mar 17, 2019
5901b66
Merge branch '3.0.0' into 3.0.0_SQL_typeHints
guidofaecke Mar 17, 2019
417ca86
removed IDE/OS specifics
guidofaecke Mar 17, 2019
16dbb40
fixed typehint
guidofaecke Mar 17, 2019
da8b22b
added parenthesis
guidofaecke Mar 17, 2019
311ad6c
changed self to $this
guidofaecke Mar 17, 2019
110f777
fixed column constructor
guidofaecke Mar 17, 2019
65409db
alignment and use function statements
guidofaecke Mar 17, 2019
ac29abe
comparator
guidofaecke Mar 17, 2019
f748754
parenthesis fixed
guidofaecke Mar 17, 2019
ba08bf4
return fix
guidofaecke Mar 18, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated file header comment, added strict_types declaration
arueckauer committed Mar 16, 2019
commit b9ce140a3a1692d5d1035061ebd6786f53cb187f
13 changes: 5 additions & 8 deletions src/Sql/AbstractExpression.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

use Zend\Db\Sql\Exception\InvalidArgumentException;
13 changes: 5 additions & 8 deletions src/Sql/AbstractPreparableSql.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

use Zend\Db\Adapter\AdapterInterface;
13 changes: 5 additions & 8 deletions src/Sql/AbstractSql.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

use Zend\Db\Adapter\Driver\DriverInterface;
13 changes: 5 additions & 8 deletions src/Sql/Combine.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

use Zend\Db\Adapter\Driver\DriverInterface;
13 changes: 5 additions & 8 deletions src/Sql/Ddl/AlterTable.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl;

use Zend\Db\Adapter\Platform\PlatformInterface;
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/AbstractLengthColumn.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

abstract class AbstractLengthColumn extends Column
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/AbstractPrecisionColumn.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

abstract class AbstractPrecisionColumn extends AbstractLengthColumn
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/AbstractTimestampColumn.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

/**
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/BigInteger.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

class BigInteger extends Integer
12 changes: 5 additions & 7 deletions src/Sql/Ddl/Column/Binary.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php

declare(strict_types=1);
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

class Binary extends AbstractLengthColumn
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/Blob.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

class Blob extends AbstractLengthColumn
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/Boolean.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

class Boolean extends Column
12 changes: 5 additions & 7 deletions src/Sql/Ddl/Column/Char.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php

declare(strict_types=1);
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

class Char extends AbstractLengthColumn
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/Column.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

use Zend\Db\Sql\Ddl\Constraint\ConstraintInterface;
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/ColumnInterface.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

use Zend\Db\Sql\ExpressionInterface;
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/Date.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

class Date extends Column
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/Datetime.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

class Datetime extends Column
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/Decimal.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

class Decimal extends AbstractPrecisionColumn
12 changes: 5 additions & 7 deletions src/Sql/Ddl/Column/Float.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php

declare(strict_types=1);
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

/**
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/Floating.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

/**
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/Integer.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

class Integer extends Column
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/Text.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

class Text extends AbstractLengthColumn
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/Time.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

class Time extends Column
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/Timestamp.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

class Timestamp extends AbstractTimestampColumn
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/Varbinary.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

class Varbinary extends AbstractLengthColumn
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Column/Varchar.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Column;

class Varchar extends AbstractLengthColumn
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Constraint/AbstractConstraint.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Constraint;

abstract class AbstractConstraint implements ConstraintInterface
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Constraint/Check.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Constraint;

use Zend\Db\Sql\ExpressionInterface;
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Constraint/ConstraintInterface.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Constraint;

use Zend\Db\Sql\ExpressionInterface;
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Constraint/ForeignKey.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Constraint;

class ForeignKey extends AbstractConstraint
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Constraint/PrimaryKey.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Constraint;

class PrimaryKey extends AbstractConstraint
13 changes: 5 additions & 8 deletions src/Sql/Ddl/Constraint/UniqueKey.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl\Constraint;

class UniqueKey extends AbstractConstraint
13 changes: 5 additions & 8 deletions src/Sql/Ddl/CreateTable.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl;

use Zend\Db\Adapter\Platform\PlatformInterface;
13 changes: 5 additions & 8 deletions src/Sql/Ddl/DropTable.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl;

use Zend\Db\Adapter\Platform\PlatformInterface;
10 changes: 4 additions & 6 deletions src/Sql/Ddl/Index/AbstractIndex.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

namespace Zend\Db\Sql\Ddl\Index;
declare(strict_types=1);namespace Zend\Db\Sql\Ddl\Index;

use Zend\Db\Sql\Ddl\Constraint\AbstractConstraint;

10 changes: 4 additions & 6 deletions src/Sql/Ddl/Index/Index.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

namespace Zend\Db\Sql\Ddl\Index;
declare(strict_types=1);namespace Zend\Db\Sql\Ddl\Index;

class Index extends AbstractIndex
{
13 changes: 5 additions & 8 deletions src/Sql/Ddl/SqlInterface.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Ddl;

use Zend\Db\Sql\SqlInterface as BaseSqlInterface;
13 changes: 5 additions & 8 deletions src/Sql/Delete.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

use Zend\Db\Adapter\ParameterContainer;
13 changes: 5 additions & 8 deletions src/Sql/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Exception;

use Zend\Db\Exception;
13 changes: 5 additions & 8 deletions src/Sql/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Exception;

use Zend\Db\Exception;
13 changes: 5 additions & 8 deletions src/Sql/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Exception;

use Zend\Db\Exception;
13 changes: 5 additions & 8 deletions src/Sql/Expression.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

class Expression extends AbstractExpression
13 changes: 5 additions & 8 deletions src/Sql/ExpressionInterface.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

interface ExpressionInterface
12 changes: 5 additions & 7 deletions src/Sql/Having.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php

declare(strict_types=1);
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

class Having extends Predicate\Predicate
13 changes: 5 additions & 8 deletions src/Sql/Insert.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

use Zend\Db\Adapter\Driver\DriverInterface;
8 changes: 5 additions & 3 deletions src/Sql/Join.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<?php
/**
* @link http://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

use Countable;
10 changes: 5 additions & 5 deletions src/Sql/Literal.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

class Literal implements ExpressionInterface
13 changes: 5 additions & 8 deletions src/Sql/Platform/AbstractPlatform.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Platform;

use Zend\Db\Adapter\AdapterInterface;
13 changes: 5 additions & 8 deletions src/Sql/Platform/IbmDb2/IbmDb2.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Platform\IbmDb2;

use Zend\Db\Sql\Platform\AbstractPlatform;
13 changes: 5 additions & 8 deletions src/Sql/Platform/IbmDb2/SelectDecorator.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Platform\IbmDb2;

use Zend\Db\Adapter\Driver\DriverInterface;
13 changes: 5 additions & 8 deletions src/Sql/Platform/Mysql/Ddl/AlterTableDecorator.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Platform\Mysql\Ddl;

use Zend\Db\Adapter\Platform\PlatformInterface;
13 changes: 5 additions & 8 deletions src/Sql/Platform/Mysql/Ddl/CreateTableDecorator.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Platform\Mysql\Ddl;

use Zend\Db\Adapter\Platform\PlatformInterface;
13 changes: 5 additions & 8 deletions src/Sql/Platform/Mysql/Mysql.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Platform\Mysql;

use Zend\Db\Sql\Platform\AbstractPlatform;
13 changes: 5 additions & 8 deletions src/Sql/Platform/Mysql/SelectDecorator.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Platform\Mysql;

use Zend\Db\Adapter\Driver\DriverInterface;
13 changes: 5 additions & 8 deletions src/Sql/Platform/Oracle/Oracle.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Platform\Oracle;

use Zend\Db\Sql\Platform\AbstractPlatform;
13 changes: 5 additions & 8 deletions src/Sql/Platform/Oracle/SelectDecorator.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Platform\Oracle;

use Zend\Db\Adapter\Driver\DriverInterface;
13 changes: 5 additions & 8 deletions src/Sql/Platform/Platform.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Platform;

use Zend\Db\Adapter\AdapterInterface;
13 changes: 5 additions & 8 deletions src/Sql/Platform/PlatformDecoratorInterface.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Platform;

interface PlatformDecoratorInterface
10 changes: 4 additions & 6 deletions src/Sql/Platform/SqlServer/Ddl/CreateTableDecorator.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

namespace Zend\Db\Sql\Platform\SqlServer\Ddl;
declare(strict_types=1);namespace Zend\Db\Sql\Platform\SqlServer\Ddl;

use Zend\Db\Adapter\Platform\PlatformInterface;
use Zend\Db\Sql\Ddl\CreateTable;
10 changes: 4 additions & 6 deletions src/Sql/Platform/SqlServer/SelectDecorator.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

namespace Zend\Db\Sql\Platform\SqlServer;
declare(strict_types=1);namespace Zend\Db\Sql\Platform\SqlServer;

use Zend\Db\Adapter\Driver\DriverInterface;
use Zend\Db\Adapter\ParameterContainer;
10 changes: 4 additions & 6 deletions src/Sql/Platform/SqlServer/SqlServer.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

namespace Zend\Db\Sql\Platform\SqlServer;
declare(strict_types=1);namespace Zend\Db\Sql\Platform\SqlServer;

use Zend\Db\Sql\Platform\AbstractPlatform;
use Zend\Db\Sql\Ddl\CreateTable;
12 changes: 5 additions & 7 deletions src/Sql/Platform/Sqlite/SelectDecorator.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php

declare(strict_types=1);
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Platform\Sqlite;

use Zend\Db\Adapter\Driver\DriverInterface;
13 changes: 5 additions & 8 deletions src/Sql/Platform/Sqlite/Sqlite.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Platform\Sqlite;

use Zend\Db\Sql\Platform\AbstractPlatform;
12 changes: 5 additions & 7 deletions src/Sql/Predicate/Between.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php

declare(strict_types=1);
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Predicate;

use Zend\Db\Sql\AbstractExpression;
13 changes: 5 additions & 8 deletions src/Sql/Predicate/Expression.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Predicate;

use Zend\Db\Sql\Expression as BaseExpression;
13 changes: 5 additions & 8 deletions src/Sql/Predicate/In.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Predicate;

use Zend\Db\Sql\Exception;
13 changes: 5 additions & 8 deletions src/Sql/Predicate/IsNotNull.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Predicate;

class IsNotNull extends IsNull
13 changes: 5 additions & 8 deletions src/Sql/Predicate/IsNull.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Predicate;

use Zend\Db\Sql\AbstractExpression;
13 changes: 5 additions & 8 deletions src/Sql/Predicate/Like.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Predicate;

use Zend\Db\Sql\AbstractExpression;
13 changes: 5 additions & 8 deletions src/Sql/Predicate/Literal.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Predicate;

use Zend\Db\Sql\Literal as BaseLiteral;
13 changes: 5 additions & 8 deletions src/Sql/Predicate/NotBetween.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Predicate;

class NotBetween extends Between
13 changes: 5 additions & 8 deletions src/Sql/Predicate/NotIn.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Predicate;

class NotIn extends In
13 changes: 5 additions & 8 deletions src/Sql/Predicate/NotLike.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Predicate;

class NotLike extends Like
13 changes: 5 additions & 8 deletions src/Sql/Predicate/Operator.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Predicate;

use Zend\Db\Sql\AbstractExpression;
10 changes: 4 additions & 6 deletions src/Sql/Predicate/Predicate.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

namespace Zend\Db\Sql\Predicate;
declare(strict_types=1);namespace Zend\Db\Sql\Predicate;

use Zend\Db\Sql\Exception\RuntimeException;
use Zend\Db\Sql\Select;
13 changes: 5 additions & 8 deletions src/Sql/Predicate/PredicateInterface.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Predicate;

use Zend\Db\Sql\ExpressionInterface;
13 changes: 5 additions & 8 deletions src/Sql/Predicate/PredicateSet.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql\Predicate;

use Countable;
10 changes: 5 additions & 5 deletions src/Sql/PreparableSqlInterface.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

use Zend\Db\Adapter\AdapterInterface;
10 changes: 5 additions & 5 deletions src/Sql/Select.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

use Zend\Db\Adapter\Driver\DriverInterface;
10 changes: 5 additions & 5 deletions src/Sql/Sql.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

use Zend\Db\Adapter\AdapterInterface;
13 changes: 5 additions & 8 deletions src/Sql/SqlInterface.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
<?php

declare(strict_types=1);

/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

use Zend\Db\Adapter\Platform\PlatformInterface;
12 changes: 5 additions & 7 deletions src/Sql/TableIdentifier.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

/**
*/
class TableIdentifier
{
/** @var string */
10 changes: 5 additions & 5 deletions src/Sql/Update.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

use Zend\Db\Adapter\ParameterContainer;
10 changes: 5 additions & 5 deletions src/Sql/Where.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @see https://github.com/zendframework/zend-db for the canonical source repository
* @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (https://www.zend.com)
* @license https://github.com/zendframework/zend-db/blob/master/LICENSE.md New BSD License
*/

declare(strict_types=1);

namespace Zend\Db\Sql;

class Where extends Predicate\Predicate