Skip to content

Commit 61df65a

Browse files
committed
sigh.
1 parent 9de530f commit 61df65a

9 files changed

+9
-9
lines changed

template/core/classes/class_autoloader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
ob_start();
2929

30-
echo "<?php declare(strict_types=1)\n\n";
30+
echo "<?php declare(strict_types=1);\n\n";
3131

3232
if ('' !== $namespace) :
3333
echo "namespace {$namespace};\n\n";

template/core/classes/class_config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
ob_start();
2727

28-
echo "<?php declare(strict_types=1)\n\n";
28+
echo "<?php declare(strict_types=1);\n\n";
2929

3030
if ('' !== $namespace) :
3131
echo "namespace {$namespace};\n\n";

template/core/classes/class_constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
ob_start();
2727

28-
echo "<?php declare(strict_types=1)\n\n";
28+
echo "<?php declare(strict_types=1);\n\n";
2929

3030
if ('' !== $namespace) :
3131
echo "namespace {$namespace};\n\n";

template/core/classes/class_type_map.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
ob_start();
4747

48-
echo "<?php declare(strict_types=1)\n\n";
48+
echo "<?php declare(strict_types=1);\n\n";
4949

5050
if ('' !== $namespace) :
5151
echo "namespace {$namespace};\n\n";

template/core/enums/enum_config_keys.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
ob_start();
2727

28-
echo "<?php declare(strict_types=1)\n\n";
28+
echo "<?php declare(strict_types=1);\n\n";
2929

3030
if ('' !== $namespace) :
3131
echo "namespace {$namespace};\n\n";

template/core/interfaces/interface_comment_container.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
ob_start();
2626

27-
echo "<?php declare(strict_types=1)\n\n";
27+
echo "<?php declare(strict_types=1);\n\n";
2828

2929
if ('' !== $namespace) :
3030
echo "namespace {$namespace};\n\n";

template/core/interfaces/interface_contained_type.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
ob_start();
3737

38-
echo "<?php declare(strict_types=1)\n\n";
38+
echo "<?php declare(strict_types=1);\n\n";
3939

4040
if ('' !== $namespace) :
4141
echo "namespace {$namespace};\n\n";

template/core/interfaces/interface_type.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
ob_start();
2626

27-
echo "<?php declare(strict_types=1)\n\n";
27+
echo "<?php declare(strict_types=1);\n\n";
2828

2929
if ('' !== $namespace) :
3030
echo "namespace {$namespace};\n\n";

template/core/interfaces/interface_xml_serializable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
ob_start();
2626

27-
echo "<?php declare(strict_types=1)\n\n";
27+
echo "<?php declare(strict_types=1);\n\n";
2828

2929
if ('' !== $namespace) :
3030
echo "namespace {$namespace};\n\n";

0 commit comments

Comments
 (0)