Compare commits
5 Commits
c1fcd9a7c8
...
v0.1.130
| Author | SHA1 | Date | |
|---|---|---|---|
| 726be37ccf | |||
| c09b3cda2b | |||
| 3b474f83f5 | |||
| c60daebf3e | |||
| 6dab7cfd17 |
@@ -56,7 +56,10 @@ jobs:
|
|||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
with:
|
with:
|
||||||
php-version: '8.4'
|
php-version: '8.4'
|
||||||
extensions: pdo, pdo_pgsql, intl, opcache, zip, mbstring, sodium
|
# gd requis par phpoffice/phpspreadsheet (export XLSX). Doit etre explicite :
|
||||||
|
# sinon `composer install` echoue sur la verification de plateforme des que
|
||||||
|
# le runner ne fournit pas l'extension par defaut (ext-gd manquante).
|
||||||
|
extensions: pdo, pdo_pgsql, intl, opcache, zip, mbstring, sodium, gd
|
||||||
coverage: none
|
coverage: none
|
||||||
tools: composer:v2
|
tools: composer:v2
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -1,2 +1,2 @@
|
|||||||
parameters:
|
parameters:
|
||||||
app.version: '0.1.128'
|
app.version: '0.1.130'
|
||||||
|
|||||||
+1
-1
@@ -48,7 +48,7 @@ final class QualimatCarrierSearchProvider implements ProviderInterface
|
|||||||
|
|
||||||
// Echappatoire ?pagination=false : collection complete (selects front).
|
// Echappatoire ?pagination=false : collection complete (selects front).
|
||||||
if (!$this->pagination->isEnabled($operation, $context)) {
|
if (!$this->pagination->isEnabled($operation, $context)) {
|
||||||
/** @var list<QualimatCarrier> $carriers */
|
// @var list<QualimatCarrier> $carriers
|
||||||
return $qb->getQuery()->getResult();
|
return $qb->getQuery()->getResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -308,7 +308,7 @@ class CarrierFixtures extends Fixture implements DependentFixtureInterface
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @var QualimatCarrier $line */
|
// @var QualimatCarrier $line
|
||||||
return $repository->findOneBy(['siret' => self::QUALIMAT_DEMO_SIRET]);
|
return $repository->findOneBy(['siret' => self::QUALIMAT_DEMO_SIRET]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user