Skip to content

Commit 567493c

Browse files
author
Jamie Hannaford
committed
add strict type checking
1 parent a2caf98 commit 567493c

Some content is hidden

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

58 files changed

+87
-71
lines changed

src/BlockStorage/v2/Api.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
namespace OpenStack\BlockStorage\v2;
33

44
use OpenCloud\Common\Api\AbstractApi;

src/BlockStorage/v2/Models/Snapshot.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 OpenStack\BlockStorage\v2\Models;
44

src/BlockStorage/v2/Models/Volume.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
namespace OpenStack\BlockStorage\v2\Models;
33

44
use OpenCloud\Common\Resource\AbstractResource;

src/BlockStorage/v2/Models/VolumeType.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 OpenStack\BlockStorage\v2\Models;
44

src/BlockStorage/v2/Params.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
namespace OpenStack\BlockStorage\v2;
33

44
use OpenCloud\Common\Api\AbstractParams;

src/BlockStorage/v2/Service.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
namespace OpenStack\BlockStorage\v2;
33

44
use OpenStack\BlockStorage\v2\Models\Snapshot;

src/Compute/v2/Api.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 OpenStack\Compute\v2;
44

src/Compute/v2/Enum.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 OpenStack\Compute\v2;
44

src/Compute/v2/Models/Flavor.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 OpenStack\Compute\v2\Models;
44

src/Compute/v2/Models/Image.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 OpenStack\Compute\v2\Models;
44

0 commit comments

Comments
 (0)