Skip to content

Commit c116a57

Browse files
committed
:octocat: declare strict types
1 parent dd9dd46 commit c116a57

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+99
-29
lines changed

src/Database.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* @copyright 2017 Smiley
88
* @license MIT
99
*/
10+
declare(strict_types=1);
1011

1112
namespace chillerlan\Database;
1213

src/DatabaseAbstract.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* @copyright 2018 Smiley
88
* @license MIT
99
*/
10+
declare(strict_types=1);
1011

1112
namespace chillerlan\Database;
1213

src/DatabaseException.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* @copyright 2017 Smiley
88
* @license MIT
99
*/
10+
declare(strict_types=1);
1011

1112
namespace chillerlan\Database;
1213

src/DatabaseOptions.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* @copyright 2017 Smiley
88
* @license MIT
99
*/
10+
declare(strict_types=1);
1011

1112
namespace chillerlan\Database;
1213

src/DatabaseOptionsTrait.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* @copyright 2018 Smiley
88
* @license MIT
99
*/
10+
declare(strict_types=1);
1011

1112
namespace chillerlan\Database;
1213

src/Dialects/Dialect.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* @copyright 2018 Smiley
1010
* @license MIT
1111
*/
12+
declare(strict_types=1);
1213

1314
namespace chillerlan\Database\Dialects;
1415

src/Dialects/DialectAbstract.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* @copyright 2018 Smiley
1010
* @license MIT
1111
*/
12+
declare(strict_types=1);
1213

1314
namespace chillerlan\Database\Dialects;
1415

src/Dialects/Firebird.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* @copyright 2018 Smiley
1010
* @license MIT
1111
*/
12+
declare(strict_types=1);
1213

1314
namespace chillerlan\Database\Dialects;
1415

src/Dialects/MSSQL.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* @copyright 2018 Smiley
1010
* @license MIT
1111
*/
12+
declare(strict_types=1);
1213

1314
namespace chillerlan\Database\Dialects;
1415

src/Dialects/MySQL.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* @copyright 2018 Smiley
1010
* @license MIT
1111
*/
12+
declare(strict_types=1);
1213

1314
namespace chillerlan\Database\Dialects;
1415

0 commit comments

Comments
 (0)