Close #145: remove open issue, make:api-component implemented #1542
ci.yml
on: push
Matrix: behat-lowest-deps
Matrix: behat-symfony-next
Matrix: behat
Matrix: php-cs-fixer
Matrix: phpunit-lowest-deps
Matrix: phpunit-symfony-next
Matrix: phpunit
Annotations
4 errors and 19 warnings
|
PHP-CS-Fixer (PHP 8.5)
Process completed with exit code 8.
|
|
PHPUnit (Symfony NEXT 8.2) (PHP 8.5)
Process completed with exit code 1.
|
|
PHPUnit (Symfony 7.4) (PHP 8.5)
Process completed with exit code 1.
|
|
Behat (Symfony 7.4) (PHP 8.5)
Process completed with exit code 255.
|
|
PHP-CS-Fixer (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/checkout@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
PHPUnit (Symfony ^7.4) (PHP 8.5) (lowest dependencies)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
PHPUnit (Symfony NEXT 8.2) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
PHPUnit (Symfony 8.1) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
PHPUnit (Symfony 7.4) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4, codecov/codecov-action@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
PHPUnit (Symfony 7.4) (PHP 8.5):
src/Entity/Core/Route.php#L126
Escaped Mutant for Mutator "LogicalAndAllSubExprNegation":
@@ @@
}
public function setPath(string $path): self
{
- if ('' !== $path && !str_starts_with($path, '/')) {
+ if (!('' !== $path) && str_starts_with($path, '/')) {
$path = '/' . $path;
}
$this->path = $path;
|
|
PHPUnit (Symfony 7.4) (PHP 8.5):
src/Entity/Core/Route.php#L126
Escaped Mutant for Mutator "NotIdentical":
@@ @@
}
public function setPath(string $path): self
{
- if ('' !== $path && !str_starts_with($path, '/')) {
+ if ('' === $path && !str_starts_with($path, '/')) {
$path = '/' . $path;
}
$this->path = $path;
|
|
PHPUnit (Symfony 7.4) (PHP 8.5):
src/Entity/Core/Page.php#L72
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
public function __construct()
{
$this->componentGroups = new ArrayCollection();
- $this->initComponentGroups();
+
}
public static function loadValidatorMetadata(ClassMetadata $metadata): void
{
|
|
PHPUnit (Symfony 7.4) (PHP 8.5):
src/Entity/Core/Layout.php#L71
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
public function __construct()
{
$this->componentGroups = new ArrayCollection();
- $this->initComponentGroups();
+
$this->pages = new ArrayCollection();
}
#[ApiProperty(readableLink: false, writableLink: false)]
|
|
PHPUnit (Symfony 7.4) (PHP 8.5):
src/Entity/Core/ComponentGroup.php#L198
Escaped Mutant for Mutator "Identical":
@@ @@
}
public function addAllowedComponent(string $allowedComponent): self
{
- if (null === $this->allowedComponents) {
+ if (null !== $this->allowedComponents) {
$this->allowedComponents = [];
}
$this->allowedComponents[] = $allowedComponent;
|
|
PHPUnit (Symfony 7.4) (PHP 8.5):
src/Entity/Core/AbstractComponent.php#L50
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
public function __construct()
{
$this->componentGroups = new ArrayCollection();
- $this->initComponentGroups();
+
$this->componentPositions = new ArrayCollection();
}
public function isPositionRestricted(): bool
|
|
PHPUnit (Symfony 7.4) (PHP 8.5):
src/ApiPlatform/Metadata/Resource/RoutingPrefixResourceMetadataCollectionFactory.php#L77
Escaped Mutant for Mutator "SpreadAssignment":
@@ @@
* @var Operation $oldOperation
*/
foreach ($oldOperations as $key => $oldOperation) {
- $subRoutePrefixParts = [...$routePrefixParts];
+ $subRoutePrefixParts = $routePrefixParts;
if ($currentRoutePrefix = $oldOperation->getRoutePrefix()) {
$subRoutePrefixParts[] = trim($currentRoutePrefix, '/');
$subRoutePrefix = '/' . implode('/', $subRoutePrefixParts);
|
|
PHPUnit (Symfony 7.4) (PHP 8.5):
src/ApiPlatform/Metadata/Resource/RoutingPrefixResourceMetadataCollectionFactory.php#L77
Escaped Mutant for Mutator "SpreadOneItem":
@@ @@
* @var Operation $oldOperation
*/
foreach ($oldOperations as $key => $oldOperation) {
- $subRoutePrefixParts = [...$routePrefixParts];
+ $subRoutePrefixParts = [[...$routePrefixParts][0]];
if ($currentRoutePrefix = $oldOperation->getRoutePrefix()) {
$subRoutePrefixParts[] = trim($currentRoutePrefix, '/');
$subRoutePrefix = '/' . implode('/', $subRoutePrefixParts);
|
|
PHPUnit (Symfony 7.4) (PHP 8.5):
src/ApiPlatform/Metadata/Resource/RoutingPrefixResourceMetadataCollectionFactory.php#L64
Escaped Mutant for Mutator "SpreadOneItem":
@@ @@
$resources = [];
/** @var ApiResource $resourceMetadatum */
foreach ($resourceMetadata as $i => $resourceMetadatum) {
- $finalRoutePrefixParts = [...$routePrefixParts];
+ $finalRoutePrefixParts = [[...$routePrefixParts][0]];
if ($currentRoutePrefix = $resourceMetadatum->getRoutePrefix()) {
$finalRoutePrefixParts[] = trim($currentRoutePrefix, '/');
}
|
|
PHPUnit (Symfony 7.4) (PHP 8.5):
src/ApiPlatform/Metadata/Resource/RoutingPrefixResourceMetadataCollectionFactory.php#L64
Escaped Mutant for Mutator "SpreadAssignment":
@@ @@
$resources = [];
/** @var ApiResource $resourceMetadatum */
foreach ($resourceMetadata as $i => $resourceMetadatum) {
- $finalRoutePrefixParts = [...$routePrefixParts];
+ $finalRoutePrefixParts = $routePrefixParts;
if ($currentRoutePrefix = $resourceMetadatum->getRoutePrefix()) {
$finalRoutePrefixParts[] = trim($currentRoutePrefix, '/');
}
|
|
Behat (Symfony ^7.4) (PHP 8.5) (lowest dependencies)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Behat (Symfony NEXT 8.2) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Behat (Symfony 8.1) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Behat (Symfony 7.4) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4, codecov/codecov-action@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
behat-logs-php8.5-lowest-deps
|
7.99 KB |
sha256:bfebb109e88cfd9e2590b7a5b7017638011689cdccfc9f05b84bc20cf993cabd
|
|
|
behat-logs-php8.5-symfony7.4
|
10.9 KB |
sha256:bf5c3056312a337c38c011fdfa8de0e82297a5144b5fe98ac63cf3b746e2abe7
|
|
|
behat-logs-php8.5-symfony8.1
|
10.9 KB |
sha256:4c5b06a23da3247fb0720dee349905b9f982c273269cbaa20ee1006b59b06cdd
|
|
|
behat-logs-php8.5-symfony8.2
|
10.8 KB |
sha256:5278323dd424acc75057bd4735c4955d713ac9d681ee99723176a1dc192a5512
|
|
|
phpunit-logs-php8.5-lowest-deps
|
8.39 KB |
sha256:f59a4d6efa020fc212c122c81f80e9b01f0ea0c5084d0a71cab6365bee100e80
|
|
|
phpunit-logs-php8.5-symfony7.4
|
763 KB |
sha256:3ce77faabba6424fde6fdc71a6f89baadf8df2da758472a72442a76f1e77e0e6
|
|
|
phpunit-logs-php8.5-symfony8.1
|
8.43 KB |
sha256:dc2a63c6837040d04e70790e2f0269fc75bd85fa7d11a50d75db142f94b97186
|
|
|
phpunit-logs-php8.5-symfony8.2
|
8.38 KB |
sha256:8e2b5712554bec18fab3520f568af9443a63c95d7a7a9c278c9eaaf19d1d15d9
|
|