Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/bundle/Core/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
*
* @return \Symfony\Component\Config\Definition\Builder\TreeBuilder The tree builder
*/
public function getConfigTreeBuilder(): TreeBuilder

Check failure on line 53 in src/bundle/Core/DependencyInjection/Configuration.php

View workflow job for this annotation

GitHub Actions / Unit tests & SQLite integration tests (8.3)

Method Ibexa\Bundle\Core\DependencyInjection\Configuration::getConfigTreeBuilder() return type with generic class Symfony\Component\Config\Definition\Builder\TreeBuilder does not specify its types: T
{
$treeBuilder = new TreeBuilder('ibexa');

Expand All @@ -73,7 +73,7 @@
return $treeBuilder;
}

public function addRepositoriesSection(ArrayNodeDefinition $rootNode)

Check failure on line 76 in src/bundle/Core/DependencyInjection/Configuration.php

View workflow job for this annotation

GitHub Actions / Unit tests & SQLite integration tests (8.3)

Method Ibexa\Bundle\Core\DependencyInjection\Configuration::addRepositoriesSection() has parameter $rootNode with generic class Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition but does not specify its types: TParent
{
$repositoriesNode = $rootNode
->children()
Expand Down Expand Up @@ -153,7 +153,7 @@
);
}

public function addSiteaccessSection(ArrayNodeDefinition $rootNode)

Check failure on line 156 in src/bundle/Core/DependencyInjection/Configuration.php

View workflow job for this annotation

GitHub Actions / Unit tests & SQLite integration tests (8.3)

Method Ibexa\Bundle\Core\DependencyInjection\Configuration::addSiteaccessSection() has parameter $rootNode with generic class Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition but does not specify its types: TParent
{
$rootNode
->children()
Expand Down Expand Up @@ -253,7 +253,7 @@
->end();
}

private function addImageMagickSection(ArrayNodeDefinition $rootNode)

Check failure on line 256 in src/bundle/Core/DependencyInjection/Configuration.php

View workflow job for this annotation

GitHub Actions / Unit tests & SQLite integration tests (8.3)

Method Ibexa\Bundle\Core\DependencyInjection\Configuration::addImageMagickSection() has parameter $rootNode with generic class Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition but does not specify its types: TParent
{
$filtersInfo =
<<<EOT
Expand Down Expand Up @@ -299,7 +299,7 @@
->end();
}

private function addHttpCacheSection(ArrayNodeDefinition $rootNode)

Check failure on line 302 in src/bundle/Core/DependencyInjection/Configuration.php

View workflow job for this annotation

GitHub Actions / Unit tests & SQLite integration tests (8.3)

Method Ibexa\Bundle\Core\DependencyInjection\Configuration::addHttpCacheSection() has parameter $rootNode with generic class Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition but does not specify its types: TParent
{
$purgeTypeInfo = <<<EOT
Http cache purge type.
Expand Down Expand Up @@ -349,7 +349,7 @@
->end();
}

private function addRouterSection(ArrayNodeDefinition $rootNode)

Check failure on line 352 in src/bundle/Core/DependencyInjection/Configuration.php

View workflow job for this annotation

GitHub Actions / Unit tests & SQLite integration tests (8.3)

Method Ibexa\Bundle\Core\DependencyInjection\Configuration::addRouterSection() has parameter $rootNode with generic class Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition but does not specify its types: TParent
{
$nonSAAwareInfo = <<<EOT
Route names that are not supposed to be SiteAccess aware, i.e. Routes pointing to asset generation (like assetic).
Expand Down Expand Up @@ -381,7 +381,7 @@
*
* @param \Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition $rootNode
*/
private function addImagePlaceholderSection(ArrayNodeDefinition $rootNode)

Check failure on line 384 in src/bundle/Core/DependencyInjection/Configuration.php

View workflow job for this annotation

GitHub Actions / Unit tests & SQLite integration tests (8.3)

Method Ibexa\Bundle\Core\DependencyInjection\Configuration::addImagePlaceholderSection() has parameter $rootNode with generic class Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition but does not specify its types: TParent
{
$rootNode
->children()
Expand Down Expand Up @@ -425,7 +425,7 @@
*
* @return \Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition
*/
private function addUrlAliasSection(ArrayNodeDefinition $rootNode)

Check failure on line 428 in src/bundle/Core/DependencyInjection/Configuration.php

View workflow job for this annotation

GitHub Actions / Unit tests & SQLite integration tests (8.3)

Method Ibexa\Bundle\Core\DependencyInjection\Configuration::addUrlAliasSection() return type with generic class Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition does not specify its types: TParent

Check failure on line 428 in src/bundle/Core/DependencyInjection/Configuration.php

View workflow job for this annotation

GitHub Actions / Unit tests & SQLite integration tests (8.3)

Method Ibexa\Bundle\Core\DependencyInjection\Configuration::addUrlAliasSection() has parameter $rootNode with generic class Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition but does not specify its types: TParent
{
return $rootNode
->children()
Expand Down Expand Up @@ -466,7 +466,7 @@
*
* @return \Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition
*/
private function addUrlWildcardsSection($rootNode): ArrayNodeDefinition

Check failure on line 469 in src/bundle/Core/DependencyInjection/Configuration.php

View workflow job for this annotation

GitHub Actions / Unit tests & SQLite integration tests (8.3)

Method Ibexa\Bundle\Core\DependencyInjection\Configuration::addUrlWildcardsSection() has parameter $rootNode with generic class Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition but does not specify its types: TParent
{
return $rootNode
->children()
Expand All @@ -491,7 +491,7 @@
* entity_mappings:
* IbexaCoreBundle:
* is_bundle: true
* type: annotation
* type: attribute
* dir: Entity
* prefix: Ibexa\Bundle\Core\Entity
*
Expand Down
Loading