Commit 43952cf5 authored by Guy Thouret's avatar Guy Thouret
Browse files

(fix) Resolve composer dependency hell to get necessary upgrades to packages - #665

parent 39e171f7
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -31,7 +31,7 @@ lint:
  stage: test
  stage: test
  image: minds/php:7.3
  image: minds/php:7.3
  script:
  script:
    - PHP_CS_FIXER_IGNORE_ENV=true bin/php-cs-fixer fix --allow-risky=yes --verbose --dry-run
    - bin/php-cs-fixer fix --allow-risky=yes --verbose --dry-run


prepare:fpm:
prepare:fpm:
  stage: prepare
  stage: prepare
+1 −1
Original line number Original line Diff line number Diff line
@@ -103,7 +103,7 @@ class FeedsSpec extends ObjectBehavior


    //
    //


    public function getMatchers()
    public function getMatchers(): array
    {
    {
        $matchers = [];
        $matchers = [];


+1 −1
Original line number Original line Diff line number Diff line
@@ -398,7 +398,7 @@ class RepositorySpec extends ObjectBehavior


    //
    //


    public function getMatchers()
    public function getMatchers(): array
    {
    {
        $matchers = [];
        $matchers = [];


+1 −1
Original line number Original line Diff line number Diff line
@@ -145,7 +145,7 @@ class RepositorySpec extends ObjectBehavior
            ->shouldReturn(true);
            ->shouldReturn(true);
    }
    }


    public function getMatchers()
    public function getMatchers(): array
    {
    {
        $matchers = [];
        $matchers = [];


+1 −1
Original line number Original line Diff line number Diff line
@@ -414,7 +414,7 @@ class RepositorySpec extends ObjectBehavior
            ->shouldReturn(true);
            ->shouldReturn(true);
    }
    }


    public function getMatchers()
    public function getMatchers(): array
    {
    {
        $matchers = [];
        $matchers = [];


Loading