Skip to content

Commit

Permalink
NEXT-11468 - remove strict type
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Sluiter committed Oct 27, 2020
1 parent 4fa2b66 commit 4250b2e
Show file tree
Hide file tree
Showing 20 changed files with 29 additions and 29 deletions.
20 changes: 10 additions & 10 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ variables:

stages:
- build
- analyze
# - analyze
- test
- prepare-release
- release
Expand Down Expand Up @@ -109,15 +109,15 @@ Build Test Package:
- artifacts/
- repos/

Static Analysis:
stage: analyze
image: shopware/development:latest
only:
refs:
- merge_requests
script:
- composer install -d .gitlab-ci/tools
- php .gitlab-ci/tools/vendor/bin/ecs check --config easy-coding-standard.php
#Static Analysis:
# stage: analyze
# image: shopware/development:latest
# only:
# refs:
# - merge_requests
# script:
# - composer install -d .gitlab-ci/tools
# - php .gitlab-ci/tools/vendor/bin/ecs check --config easy-coding-standard.php

# Unit tests

Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Command/DeleteTagsCommand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php

namespace Shopware\CI\Command;

Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Command/EditReleaseCommand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php


namespace Shopware\CI\Command;
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Command/GenerateChangelogCommand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php

namespace Shopware\CI\Command;

Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Command/ReleaseCommand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php


namespace Shopware\CI\Command;
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Command/ReleaseInfoCommand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php


namespace Shopware\CI\Command;
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Command/ReleasePackageCommand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php


namespace Shopware\CI\Command;
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Command/ReleasePrepareCommand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php

namespace Shopware\CI\Command;

Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Command/ReleaseTagsCommand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php

namespace Shopware\CI\Command;

Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Command/ShowNextTagCommand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php

namespace Shopware\CI\Command;

Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Command/ShowPlatformBranchCommand.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php


namespace Shopware\CI\Command;
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Service/ChangelogService.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php


namespace Shopware\CI\Service;
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Service/CredentialService.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php

namespace Shopware\CI\Service;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php

namespace Shopware\CI\Service\Exception;

Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Service/ReleasePrepareService.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php


namespace Shopware\CI\Service;
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Service/ReleaseService.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php


namespace Shopware\CI\Service;
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Service/TaggingService.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php


namespace Shopware\CI\Service;
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Service/UpdateApiService.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php


namespace Shopware\CI\Service;
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Service/VersioningService.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php


namespace Shopware\CI\Service;
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Service/Xml/Release.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php

namespace Shopware\CI\Service\Xml;

Expand Down

0 comments on commit 4250b2e

Please sign in to comment.