Skip to content

Commit 9eb6e07

Browse files
author
Daniel Gomes
committed
Enable the strict types
1 parent c9f05cb commit 9eb6e07

16 files changed

+16
-16
lines changed

examples/CargoLegs/Leg.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
namespace Examples\DCSG\ImmutableCollections\CargoLegs;
44

examples/CargoLegs/Legs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
namespace Examples\DCSG\ImmutableCollections\CargoLegs;
44

examples/CargoLegs/app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
$loader = require __DIR__ . '/../../vendor/autoload.php';
44
$loader->addPsr4('Examples\\DCSG\\ImmutableCollections\\CargoLegs\\', __DIR__);

examples/Invoices/Invoice.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
namespace Examples\DCSG\ImmutableCollections\Invoices;
44

examples/Invoices/InvoiceItem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
namespace Examples\DCSG\ImmutableCollections\Invoices;
44

examples/Invoices/InvoiceItems.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
namespace Examples\DCSG\ImmutableCollections\Invoices;
44

examples/Invoices/Invoices.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
namespace Examples\DCSG\ImmutableCollections\Invoices;
44

examples/Invoices/app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
$loader = require __DIR__ . '/../../vendor/autoload.php';
44
$loader->addPsr4('Examples\\DCSG\\ImmutableCollections\\Invoices\\', __DIR__);

src/CollectionInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
namespace DCSG\ImmutableCollections;
44

src/CollectionIterator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
namespace DCSG\ImmutableCollections;
44

0 commit comments

Comments
 (0)