Issue #3274474 by mondrake, longwave, andypost, Spokje, catch, alexpott: Fix 'Access to an undefined property' PHPStan L0 errors

merge-requests/2780/head
catch 2022-09-13 12:32:43 +01:00
parent 1781f1fa4a
commit ffdecfadf6
53 changed files with 285 additions and 387 deletions

View File

@ -36,6 +36,11 @@ class CacheContextsManager {
*/ */
protected $contexts; protected $contexts;
/**
* The set of valid context tokens.
*/
protected array $validContextTokens;
/** /**
* Constructs a CacheContextsManager object. * Constructs a CacheContextsManager object.
* *

View File

@ -3,8 +3,9 @@
namespace Drupal\Core\Cache; namespace Drupal\Core\Cache;
use Drupal\Component\Assertion\Inspector; use Drupal\Component\Assertion\Inspector;
use Drupal\Core\PhpStorage\PhpStorageFactory; use Drupal\Component\PhpStorage\PhpStorageInterface;
use Drupal\Component\Utility\Crypt; use Drupal\Component\Utility\Crypt;
use Drupal\Core\PhpStorage\PhpStorageFactory;
/** /**
* Defines a PHP cache implementation. * Defines a PHP cache implementation.
@ -26,6 +27,11 @@ class PhpBackend implements CacheBackendInterface {
*/ */
protected $bin; protected $bin;
/**
* The PHP storage.
*/
protected PhpStorageInterface $storage;
/** /**
* Array to store cache objects. * Array to store cache objects.
*/ */

View File

@ -39,6 +39,16 @@ class QueryFactory implements QueryFactoryInterface, EventSubscriberInterface {
*/ */
protected $namespaces; protected $namespaces;
/**
* The key value factory.
*/
protected KeyValueFactoryInterface $keyValueFactory;
/**
* The configuration manager.
*/
protected ConfigManagerInterface $configManager;
/** /**
* Constructs a QueryFactory object. * Constructs a QueryFactory object.
* *

View File

@ -35,20 +35,6 @@ class Truncate extends Query {
$this->table = $table; $this->table = $table;
} }
/**
* {@inheritdoc}
*/
public function compile(Connection $connection, PlaceholderInterface $queryPlaceholder) {
return $this->condition->compile($connection, $queryPlaceholder);
}
/**
* {@inheritdoc}
*/
public function compiled() {
return $this->condition->compiled();
}
/** /**
* Executes the TRUNCATE query. * Executes the TRUNCATE query.
* *

View File

@ -62,6 +62,11 @@ class EntityController implements ContainerInjectionInterface {
*/ */
protected $renderer; protected $renderer;
/**
* The url generator.
*/
protected UrlGeneratorInterface $urlGenerator;
/** /**
* Constructs a new EntityController. * Constructs a new EntityController.
* *

View File

@ -28,6 +28,13 @@ class EntityResolverManager {
*/ */
protected $classResolver; protected $classResolver;
/**
* The list of all entity types.
*
* @var \Drupal\Core\Entity\EntityTypeInterface[]
*/
protected ?array $entityTypes;
/** /**
* Constructs a new EntityRouteAlterSubscriber. * Constructs a new EntityRouteAlterSubscriber.
* *

View File

@ -131,6 +131,11 @@ abstract class QueryBase implements QueryInterface {
*/ */
protected $namespaces = []; protected $namespaces = [];
/**
* Defines how the conditions on the query need to match.
*/
protected string $conjunction;
/** /**
* Constructs this object. * Constructs this object.
* *

View File

@ -51,10 +51,8 @@ class FinishResponseSubscriber implements EventSubscriberInterface {
/** /**
* The cache contexts manager service. * The cache contexts manager service.
*
* @var \Drupal\Core\Cache\Context\CacheContextsManager
*/ */
protected $cacheContexts; protected CacheContextsManager $cacheContextsManager;
/** /**
* Whether to send cacheability headers for debugging purposes. * Whether to send cacheability headers for debugging purposes.

View File

@ -25,6 +25,11 @@ class RedirectResponseSubscriber implements EventSubscriberInterface {
*/ */
protected $unroutedUrlAssembler; protected $unroutedUrlAssembler;
/**
* The request context.
*/
protected RequestContext $requestContext;
/** /**
* Constructs a RedirectResponseSubscriber object. * Constructs a RedirectResponseSubscriber object.
* *

View File

@ -30,6 +30,26 @@ abstract class OptionsWidgetBase extends WidgetBase {
*/ */
protected $column; protected $column;
/**
* Tracks whether the field is required.
*/
protected bool $required;
/**
* Tracks whether the data is multi-valued.
*/
protected bool $multiple;
/**
* Tracks whether the field has a value.
*/
protected bool $has_value;
/**
* The array of options for the widget.
*/
protected array $options;
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */

View File

@ -32,6 +32,11 @@ class LanguageManager implements LanguageManagerInterface {
*/ */
protected $defaultLanguage; protected $defaultLanguage;
/**
* Information about all defined language types.
*/
protected array $definedLanguageTypesInfo;
/** /**
* Constructs the language manager. * Constructs the language manager.
* *

View File

@ -20,6 +20,11 @@ use Twig\NodeVisitor\AbstractNodeVisitor;
*/ */
class TwigNodeVisitor extends AbstractNodeVisitor { class TwigNodeVisitor extends AbstractNodeVisitor {
/**
* Tracks whether there is a render array aware filter active already.
*/
protected ?bool $skipRenderVarFunction;
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */

View File

@ -16,10 +16,8 @@ class PerformanceTestRecorder implements EventSubscriberInterface {
/** /**
* The state service for persistent storage if necessary. * The state service for persistent storage if necessary.
*
* @var \Drupal\Core\State\StateInterface
*/ */
protected $service; protected ?StateInterface $state;
/** /**
* @var array * @var array

View File

@ -52,6 +52,11 @@ class RecursiveContextualValidator implements ContextualValidatorInterface {
*/ */
protected $constraintValidatorFactory; protected $constraintValidatorFactory;
/**
* The typed data manager.
*/
protected TypedDataManagerInterface $typedDataManager;
/** /**
* Creates a validator for the given context. * Creates a validator for the given context.
* *

View File

@ -24,6 +24,16 @@ class Updater {
*/ */
protected $root; protected $root;
/**
* The name of the project directory (basename).
*/
protected string $name;
/**
* The title of the project.
*/
protected string $title;
/** /**
* Constructs a new updater. * Constructs a new updater.
* *

View File

@ -15,6 +15,11 @@ use Symfony\Component\Validator\ConstraintValidatorInterface;
*/ */
class ConstraintValidatorFactory extends BaseConstraintValidatorFactory { class ConstraintValidatorFactory extends BaseConstraintValidatorFactory {
/**
* The class resolver.
*/
protected ClassResolverInterface $classResolver;
/** /**
* Constructs a new ConstraintValidatorFactory. * Constructs a new ConstraintValidatorFactory.
* *

View File

@ -31,6 +31,11 @@ class BlockTheme extends ProcessPluginBase implements ContainerFactoryPluginInte
*/ */
protected $themeConfig; protected $themeConfig;
/**
* List of themes available on the destination.
*/
protected array $themes;
/** /**
* Constructs a BlockTheme object. * Constructs a BlockTheme object.
* *

View File

@ -20,6 +20,11 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
*/ */
class TestAccessBlock extends BlockBase implements ContainerFactoryPluginInterface { class TestAccessBlock extends BlockBase implements ContainerFactoryPluginInterface {
/**
* The state service.
*/
protected StateInterface $state;
/** /**
* Tests the test access block. * Tests the test access block.
* *

View File

@ -15,6 +15,16 @@ use Drupal\views\ResultRow;
*/ */
class StatisticsLastCommentName extends FieldPluginBase { class StatisticsLastCommentName extends FieldPluginBase {
/**
* The users table.
*/
protected ?string $user_table;
/**
* The user name field.
*/
protected string $user_field;
/** /**
* The user id. * The user id.
*/ */

View File

@ -13,6 +13,11 @@ use Drupal\views\Plugin\views\field\Date;
*/ */
class StatisticsLastUpdated extends Date { class StatisticsLastUpdated extends Date {
/**
* The node table.
*/
protected ?string $node_table;
public function query() { public function query() {
$this->ensureMyTable(); $this->ensureMyTable();
$this->node_table = $this->query->ensureTable('node_field_data', $this->relationship); $this->node_table = $this->query->ensureTable('node_field_data', $this->relationship);

View File

@ -13,6 +13,11 @@ use Drupal\views\Plugin\views\filter\Date;
*/ */
class StatisticsLastUpdated extends Date { class StatisticsLastUpdated extends Date {
/**
* The node table.
*/
protected ?string $node_table;
public function query() { public function query() {
$this->ensureMyTable(); $this->ensureMyTable();
$this->node_table = $this->query->ensureTable('node', $this->relationship); $this->node_table = $this->query->ensureTable('node', $this->relationship);

View File

@ -14,6 +14,16 @@ use Drupal\views\Plugin\views\sort\SortPluginBase;
*/ */
class StatisticsLastCommentName extends SortPluginBase { class StatisticsLastCommentName extends SortPluginBase {
/**
* The users table.
*/
protected ?string $user_table;
/**
* The user name field.
*/
protected string $user_field;
public function query() { public function query() {
$this->ensureMyTable(); $this->ensureMyTable();
$definition = [ $definition = [

View File

@ -13,6 +13,16 @@ use Drupal\views\Plugin\views\sort\Date;
*/ */
class StatisticsLastUpdated extends Date { class StatisticsLastUpdated extends Date {
/**
* The node table.
*/
protected ?string $node_table;
/**
* The field alias.
*/
protected string $field_alias;
public function query() { public function query() {
$this->ensureMyTable(); $this->ensureMyTable();
$this->node_table = $this->query->ensureTable('node', $this->relationship); $this->node_table = $this->query->ensureTable('node', $this->relationship);

View File

@ -16,6 +16,11 @@ class FieldUiLocalAction extends DeriverBase implements ContainerDeriverInterfac
use StringTranslationTrait; use StringTranslationTrait;
/**
* The route provider to load routes by name.
*/
protected RouteProviderInterface $routeProvider;
/** /**
* The entity type manager. * The entity type manager.
* *

View File

@ -28,6 +28,11 @@ use Symfony\Component\Validator\ConstraintViolationListInterface;
*/ */
class FileWidget extends WidgetBase { class FileWidget extends WidgetBase {
/**
* The element info manager.
*/
protected ElementInfoManagerInterface $elementInfo;
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */

View File

@ -17,6 +17,11 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
*/ */
class FieldFile extends ProcessPluginBase implements ContainerFactoryPluginInterface { class FieldFile extends ProcessPluginBase implements ContainerFactoryPluginInterface {
/**
* The current migration.
*/
protected MigrationInterface $migration;
/** /**
* The migrate lookup service. * The migrate lookup service.
* *

View File

@ -20,6 +20,11 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
*/ */
class FilterFormatPermission extends ProcessPluginBase implements ContainerFactoryPluginInterface { class FilterFormatPermission extends ProcessPluginBase implements ContainerFactoryPluginInterface {
/**
* The current migration.
*/
protected MigrationInterface $migration;
/** /**
* The migrate lookup service. * The migrate lookup service.
* *

View File

@ -78,10 +78,8 @@ class HelpTopicSection extends HelpSectionPluginBase implements ContainerFactory
/** /**
* The string translation service. * The string translation service.
*
* @var \Drupal\Core\StringTranslation\TranslationManager
*/ */
protected $stringTranslation; protected TranslationManager $translationManager;
/** /**
* Constructs a HelpTopicSection object. * Constructs a HelpTopicSection object.

View File

@ -65,10 +65,6 @@ class RestJsonApiUnsupported extends ResourceTestBase {
protected function setUp(): void { protected function setUp(): void {
parent::setUp(); parent::setUp();
// Set up a HTTP client that accepts relative URLs.
$this->httpClient = $this->container->get('http_client_factory')
->fromOptions(['base_uri' => $this->baseUrl]);
// Create a "Camelids" node type. // Create a "Camelids" node type.
NodeType::create([ NodeType::create([
'name' => 'Camelids', 'name' => 'Camelids',

View File

@ -11,6 +11,11 @@ use Drupal\Core\Plugin\DefaultPluginManager;
*/ */
class LanguageNegotiationMethodManager extends DefaultPluginManager { class LanguageNegotiationMethodManager extends DefaultPluginManager {
/**
* The cache key prefix.
*/
protected string $cacheKeyPrefix;
/** /**
* Constructs a new LanguageNegotiationMethodManager object. * Constructs a new LanguageNegotiationMethodManager object.
* *

View File

@ -21,7 +21,7 @@ class LocaleEvent extends Event {
* *
* @var string[] * @var string[]
*/ */
protected $original; protected array $lids;
/** /**
* Constructs a new LocaleEvent. * Constructs a new LocaleEvent.

View File

@ -4,6 +4,7 @@ namespace Drupal\migrate\Plugin\migrate\destination;
use Drupal\Component\Plugin\DependentPluginInterface; use Drupal\Component\Plugin\DependentPluginInterface;
use Drupal\Core\Entity\DependencyTrait; use Drupal\Core\Entity\DependencyTrait;
use Drupal\Core\Entity\EntityFieldManagerInterface;
use Drupal\Core\Entity\EntityStorageInterface; use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface; use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\migrate\EntityFieldDefinitionTrait; use Drupal\migrate\EntityFieldDefinitionTrait;
@ -70,6 +71,11 @@ abstract class Entity extends DestinationBase implements ContainerFactoryPluginI
*/ */
protected $storage; protected $storage;
/**
* The entity field manager.
*/
protected EntityFieldManagerInterface $entityFieldManager;
/** /**
* The list of the bundles of this entity type. * The list of the bundles of this entity type.
* *

View File

@ -93,13 +93,6 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
*/ */
class EntityContentBase extends Entity implements HighestIdInterface, MigrateValidatableEntityInterface { class EntityContentBase extends Entity implements HighestIdInterface, MigrateValidatableEntityInterface {
/**
* Entity field manager.
*
* @var \Drupal\Core\Entity\EntityFieldManagerInterface
*/
protected $entityFieldManager;
/** /**
* Field type plugin manager. * Field type plugin manager.
* *

View File

@ -57,6 +57,11 @@ use Drupal\migrate\Row;
*/ */
class Route extends ProcessPluginBase implements ContainerFactoryPluginInterface { class Route extends ProcessPluginBase implements ContainerFactoryPluginInterface {
/**
* The current migration.
*/
protected MigrationInterface $migration;
/** /**
* The path validator service. * The path validator service.
* *

View File

@ -11,6 +11,11 @@ use Symfony\Component\HttpKernel\HttpKernelInterface;
*/ */
class AcceptHeaderMiddleware implements HttpKernelInterface { class AcceptHeaderMiddleware implements HttpKernelInterface {
/**
* The app kernel.
*/
protected HttpKernelInterface $app;
/** /**
* Constructs a new AcceptHeaderMiddleware instance. * Constructs a new AcceptHeaderMiddleware instance.
* *

View File

@ -12,6 +12,11 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
*/ */
class LonelyMonkeyController extends ControllerBase implements ContainerInjectionInterface { class LonelyMonkeyController extends ControllerBase implements ContainerInjectionInterface {
/**
* The lonely monkey class.
*/
protected LonelyMonkeyClass $class;
public function __construct(LonelyMonkeyClass $class) { public function __construct(LonelyMonkeyClass $class) {
$this->class = $class; $this->class = $class;
} }

View File

@ -9,6 +9,11 @@ use Drupal\Core\Database\Connection;
*/ */
class LonelyMonkeyClass { class LonelyMonkeyClass {
/**
* The database connection.
*/
protected Connection $connection;
public function __construct(Connection $connection) { public function __construct(Connection $connection) {
$this->connection = $connection; $this->connection = $connection;
} }

View File

@ -21,6 +21,11 @@ class MonkeysInTheControlRoom implements HttpKernelInterface {
*/ */
protected $app; protected $app;
/**
* The settings.
*/
protected Settings $settings;
/** /**
* MonkeysInTheControlRoom constructor. * MonkeysInTheControlRoom constructor.
* *

View File

@ -78,6 +78,11 @@ class UpdateProcessor implements UpdateProcessorInterface {
*/ */
protected $privateKey; protected $privateKey;
/**
* The queue for fetching release history data.
*/
protected array $fetchTasks;
/** /**
* Constructs an UpdateProcessor. * Constructs an UpdateProcessor.
* *

View File

@ -18,6 +18,11 @@ class Name extends InOperator {
protected $alwaysMultiple = TRUE; protected $alwaysMultiple = TRUE;
/**
* The validated exposed input.
*/
protected array $validated_exposed_input;
protected function valueForm(&$form, FormStateInterface $form_state) { protected function valueForm(&$form, FormStateInterface $form_state) {
$users = $this->value ? User::loadMultiple($this->value) : []; $users = $this->value ? User::loadMultiple($this->value) : [];
$default_value = EntityAutocomplete::getEntityLabels($users); $default_value = EntityAutocomplete::getEntityLabels($users);

View File

@ -135,6 +135,7 @@ abstract class PluginBase extends ComponentPluginBase implements ContainerFactor
*/ */
public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) { public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
$this->view = $view; $this->view = $view;
$this->options = $this->options ?? [];
$this->setOptionDefaults($this->options, $this->defineOptions()); $this->setOptionDefaults($this->options, $this->defineOptions());
$this->displayHandler = $display; $this->displayHandler = $display;

View File

@ -52,6 +52,13 @@ abstract class QueryPluginBase extends PluginBase implements CacheableDependency
*/ */
public int $offset; public int $offset;
/**
* Controls how the WHERE and HAVING groups are put together.
*
* @var string
*/
protected $groupOperator;
/** /**
* Generate a query and a countquery from all of the information supplied * Generate a query and a countquery from all of the information supplied
* to the object. * to the object.

View File

@ -58,13 +58,6 @@ class Sql extends QueryPluginBase {
* or OR. * or OR.
*/ */
public $having = []; public $having = [];
/**
* The default operator to use when connecting the WHERE groups. May be
* AND or OR.
*
* @var string
*/
protected $groupOperator = 'AND';
/** /**
* A simple array of order by clauses. * A simple array of order by clauses.
@ -159,6 +152,9 @@ class Sql extends QueryPluginBase {
* The messenger. * The messenger.
*/ */
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, DateSqlInterface $date_sql, MessengerInterface $messenger) { public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, DateSqlInterface $date_sql, MessengerInterface $messenger) {
// By default, use AND operator to connect WHERE groups.
$this->groupOperator = 'AND';
parent::__construct($configuration, $plugin_id, $plugin_definition); parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityTypeManager = $entity_type_manager; $this->entityTypeManager = $entity_type_manager;

View File

@ -3,6 +3,7 @@
namespace Drupal\views\Plugin\views\sort; namespace Drupal\views\Plugin\views\sort;
use Drupal\views\Plugin\views\display\DisplayPluginBase; use Drupal\views\Plugin\views\display\DisplayPluginBase;
use Drupal\views\Plugin\views\HandlerBase;
use Drupal\views\ViewExecutable; use Drupal\views\ViewExecutable;
use Drupal\views\Views; use Drupal\views\Views;
@ -13,6 +14,11 @@ use Drupal\views\Views;
*/ */
class GroupByNumeric extends SortPluginBase { class GroupByNumeric extends SortPluginBase {
/**
* The original handler.
*/
protected HandlerBase $handler;
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */

View File

@ -135,6 +135,11 @@ class ViewUI implements ViewEntityInterface {
*/ */
private $isUninstalling = FALSE; private $isUninstalling = FALSE;
/**
* The entity type.
*/
protected string $entityType;
/** /**
* Constructs a View UI object. * Constructs a View UI object.
* *
@ -536,7 +541,6 @@ class ViewUI implements ViewEntityInterface {
$errors = $executable->validate(); $errors = $executable->validate();
$executable->destroy(); $executable->destroy();
if (empty($errors)) { if (empty($errors)) {
$this->ajax = TRUE;
$executable->live_preview = TRUE; $executable->live_preview = TRUE;
// AJAX happens via HTTP POST but everything expects exposed data to // AJAX happens via HTTP POST but everything expects exposed data to

View File

@ -120,11 +120,6 @@ parameters:
count: 3 count: 3
path: lib/Drupal/Core/Cache/ApcuBackend.php path: lib/Drupal/Core/Cache/ApcuBackend.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Cache\\\\Context\\\\CacheContextsManager\\:\\:\\$validContextTokens\\.$#"
count: 1
path: lib/Drupal/Core/Cache/Context/CacheContextsManager.php
- -
message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#" message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
count: 4 count: 4
@ -135,11 +130,6 @@ parameters:
count: 1 count: 1
path: lib/Drupal/Core/Cache/MemoryBackend.php path: lib/Drupal/Core/Cache/MemoryBackend.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Cache\\\\PhpBackend\\:\\:\\$storage\\.$#"
count: 1
path: lib/Drupal/Core/Cache/PhpBackend.php
- -
message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#" message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
count: 2 count: 2
@ -155,16 +145,6 @@ parameters:
count: 1 count: 1
path: lib/Drupal/Core/Condition/ConditionManager.php path: lib/Drupal/Core/Condition/ConditionManager.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Config\\\\Entity\\\\Query\\\\QueryFactory\\:\\:\\$configManager\\.$#"
count: 5
path: lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Config\\\\Entity\\\\Query\\\\QueryFactory\\:\\:\\$keyValueFactory\\.$#"
count: 3
path: lib/Drupal/Core/Config/Entity/Query/QueryFactory.php
- -
message: "#^Method Drupal\\\\Core\\\\Config\\\\TypedConfigManager\\:\\:replaceVariable\\(\\) should return string but return statement is missing\\.$#" message: "#^Method Drupal\\\\Core\\\\Config\\\\TypedConfigManager\\:\\:replaceVariable\\(\\) should return string but return statement is missing\\.$#"
count: 1 count: 1
@ -180,11 +160,6 @@ parameters:
count: 1 count: 1
path: lib/Drupal/Core/Database/Query/Merge.php path: lib/Drupal/Core/Database/Query/Merge.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Database\\\\Query\\\\Truncate\\:\\:\\$condition\\.$#"
count: 2
path: lib/Drupal/Core/Database/Query/Truncate.php
- -
message: "#^Call to an undefined method Drupal\\\\Core\\\\Database\\\\Schema\\:\\:createTableSql\\(\\)\\.$#" message: "#^Call to an undefined method Drupal\\\\Core\\\\Database\\\\Schema\\:\\:createTableSql\\(\\)\\.$#"
count: 1 count: 1
@ -220,11 +195,6 @@ parameters:
count: 1 count: 1
path: lib/Drupal/Core/Entity/ContentEntityNullStorage.php path: lib/Drupal/Core/Entity/ContentEntityNullStorage.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Entity\\\\Controller\\\\EntityController\\:\\:\\$urlGenerator\\.$#"
count: 1
path: lib/Drupal/Core/Entity/Controller/EntityController.php
- -
message: "#^Method Drupal\\\\Core\\\\Entity\\\\Controller\\\\EntityController\\:\\:deleteTitle\\(\\) should return string but return statement is missing\\.$#" message: "#^Method Drupal\\\\Core\\\\Entity\\\\Controller\\\\EntityController\\:\\:deleteTitle\\(\\) should return string but return statement is missing\\.$#"
count: 1 count: 1
@ -245,11 +215,6 @@ parameters:
count: 2 count: 2
path: lib/Drupal/Core/Entity/EntityDisplayBase.php path: lib/Drupal/Core/Entity/EntityDisplayBase.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Entity\\\\EntityResolverManager\\:\\:\\$entityTypes\\.$#"
count: 1
path: lib/Drupal/Core/Entity/EntityResolverManager.php
- -
message: "#^Method Drupal\\\\Core\\\\Entity\\\\KeyValueStore\\\\KeyValueContentEntityStorage\\:\\:createTranslation\\(\\) should return Drupal\\\\Core\\\\Entity\\\\ContentEntityInterface but return statement is missing\\.$#" message: "#^Method Drupal\\\\Core\\\\Entity\\\\KeyValueStore\\\\KeyValueContentEntityStorage\\:\\:createTranslation\\(\\) should return Drupal\\\\Core\\\\Entity\\\\ContentEntityInterface but return statement is missing\\.$#"
count: 1 count: 1
@ -265,21 +230,11 @@ parameters:
count: 1 count: 1
path: lib/Drupal/Core/Entity/Plugin/DataType/Deriver/EntityDeriver.php path: lib/Drupal/Core/Entity/Plugin/DataType/Deriver/EntityDeriver.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Entity\\\\Query\\\\QueryBase\\:\\:\\$conjunction\\.$#"
count: 1
path: lib/Drupal/Core/Entity/Query/QueryBase.php
- -
message: "#^Method Drupal\\\\Core\\\\Entity\\\\Query\\\\QueryBase\\:\\:getClass\\(\\) should return string but return statement is missing\\.$#" message: "#^Method Drupal\\\\Core\\\\Entity\\\\Query\\\\QueryBase\\:\\:getClass\\(\\) should return string but return statement is missing\\.$#"
count: 1 count: 1
path: lib/Drupal/Core/Entity/Query/QueryBase.php path: lib/Drupal/Core/Entity/Query/QueryBase.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Entity\\\\Query\\\\Sql\\\\Query\\:\\:\\$conjunction\\.$#"
count: 1
path: lib/Drupal/Core/Entity/Query/Sql/Query.php
- -
message: "#^Method Drupal\\\\Core\\\\Entity\\\\Sql\\\\SqlContentEntityStorageSchema\\:\\:processDataTable\\(\\) should return array but return statement is missing\\.$#" message: "#^Method Drupal\\\\Core\\\\Entity\\\\Sql\\\\SqlContentEntityStorageSchema\\:\\:processDataTable\\(\\) should return array but return statement is missing\\.$#"
count: 1 count: 1
@ -290,21 +245,11 @@ parameters:
count: 1 count: 1
path: lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php path: lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\EventSubscriber\\\\FinishResponseSubscriber\\:\\:\\$cacheContextsManager\\.$#"
count: 2
path: lib/Drupal/Core/EventSubscriber/FinishResponseSubscriber.php
- -
message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#" message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
count: 2 count: 2
path: lib/Drupal/Core/EventSubscriber/FinishResponseSubscriber.php path: lib/Drupal/Core/EventSubscriber/FinishResponseSubscriber.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\EventSubscriber\\\\RedirectResponseSubscriber\\:\\:\\$requestContext\\.$#"
count: 2
path: lib/Drupal/Core/EventSubscriber/RedirectResponseSubscriber.php
- -
message: "#^Call to an undefined method Drupal\\\\Core\\\\Extension\\\\Discovery\\\\RecursiveExtensionFilterIterator\\:\\:isDir\\(\\)\\.$#" message: "#^Call to an undefined method Drupal\\\\Core\\\\Extension\\\\Discovery\\\\RecursiveExtensionFilterIterator\\:\\:isDir\\(\\)\\.$#"
count: 1 count: 1
@ -360,56 +305,6 @@ parameters:
count: 1 count: 1
path: lib/Drupal/Core/Field/Plugin/Field/FieldType/EntityReferenceItem.php path: lib/Drupal/Core/Field/Plugin/Field/FieldType/EntityReferenceItem.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Field\\\\Plugin\\\\Field\\\\FieldWidget\\\\OptionsButtonsWidget\\:\\:\\$multiple\\.$#"
count: 2
path: lib/Drupal/Core/Field/Plugin/Field/FieldWidget/OptionsButtonsWidget.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Field\\\\Plugin\\\\Field\\\\FieldWidget\\\\OptionsButtonsWidget\\:\\:\\$required\\.$#"
count: 2
path: lib/Drupal/Core/Field/Plugin/Field/FieldWidget/OptionsButtonsWidget.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Field\\\\Plugin\\\\Field\\\\FieldWidget\\\\OptionsSelectWidget\\:\\:\\$has_value\\.$#"
count: 1
path: lib/Drupal/Core/Field/Plugin/Field/FieldWidget/OptionsSelectWidget.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Field\\\\Plugin\\\\Field\\\\FieldWidget\\\\OptionsSelectWidget\\:\\:\\$multiple\\.$#"
count: 2
path: lib/Drupal/Core/Field/Plugin/Field/FieldWidget/OptionsSelectWidget.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Field\\\\Plugin\\\\Field\\\\FieldWidget\\\\OptionsSelectWidget\\:\\:\\$options\\.$#"
count: 1
path: lib/Drupal/Core/Field/Plugin/Field/FieldWidget/OptionsSelectWidget.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Field\\\\Plugin\\\\Field\\\\FieldWidget\\\\OptionsSelectWidget\\:\\:\\$required\\.$#"
count: 2
path: lib/Drupal/Core/Field/Plugin/Field/FieldWidget/OptionsSelectWidget.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Field\\\\Plugin\\\\Field\\\\FieldWidget\\\\OptionsWidgetBase\\:\\:\\$has_value\\.$#"
count: 1
path: lib/Drupal/Core/Field/Plugin/Field/FieldWidget/OptionsWidgetBase.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Field\\\\Plugin\\\\Field\\\\FieldWidget\\\\OptionsWidgetBase\\:\\:\\$multiple\\.$#"
count: 1
path: lib/Drupal/Core/Field/Plugin/Field/FieldWidget/OptionsWidgetBase.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Field\\\\Plugin\\\\Field\\\\FieldWidget\\\\OptionsWidgetBase\\:\\:\\$options\\.$#"
count: 1
path: lib/Drupal/Core/Field/Plugin/Field/FieldWidget/OptionsWidgetBase.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Field\\\\Plugin\\\\Field\\\\FieldWidget\\\\OptionsWidgetBase\\:\\:\\$required\\.$#"
count: 1
path: lib/Drupal/Core/Field/Plugin/Field/FieldWidget/OptionsWidgetBase.php
- -
message: "#^Method Drupal\\\\Core\\\\FileTransfer\\\\FileTransfer\\:\\:__get\\(\\) should return bool\\|string but return statement is missing\\.$#" message: "#^Method Drupal\\\\Core\\\\FileTransfer\\\\FileTransfer\\:\\:__get\\(\\) should return bool\\|string but return statement is missing\\.$#"
count: 1 count: 1
@ -450,11 +345,6 @@ parameters:
count: 1 count: 1
path: lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php path: lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Language\\\\LanguageManager\\:\\:\\$definedLanguageTypesInfo\\.$#"
count: 1
path: lib/Drupal/Core/Language/LanguageManager.php
- -
message: "#^Method Drupal\\\\Core\\\\Lock\\\\NullLockBackend\\:\\:wait\\(\\) should return bool but return statement is missing\\.$#" message: "#^Method Drupal\\\\Core\\\\Lock\\\\NullLockBackend\\:\\:wait\\(\\) should return bool but return statement is missing\\.$#"
count: 1 count: 1
@ -490,21 +380,11 @@ parameters:
count: 1 count: 1
path: lib/Drupal/Core/Template/AttributeValueBase.php path: lib/Drupal/Core/Template/AttributeValueBase.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Template\\\\TwigNodeVisitor\\:\\:\\$skipRenderVarFunction\\.$#"
count: 1
path: lib/Drupal/Core/Template/TwigNodeVisitor.php
- -
message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#" message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
count: 1 count: 1
path: lib/Drupal/Core/Template/TwigPhpStorageCache.php path: lib/Drupal/Core/Template/TwigPhpStorageCache.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Test\\\\PerformanceTestRecorder\\:\\:\\$state\\.$#"
count: 3
path: lib/Drupal/Core/Test/PerformanceTestRecorder.php
- -
message: "#^Method Drupal\\\\Core\\\\Test\\\\TestRunnerKernel\\:\\:boot\\(\\) should return \\$this\\(Drupal\\\\Core\\\\Test\\\\TestRunnerKernel\\) but return statement is missing\\.$#" message: "#^Method Drupal\\\\Core\\\\Test\\\\TestRunnerKernel\\:\\:boot\\(\\) should return \\$this\\(Drupal\\\\Core\\\\Test\\\\TestRunnerKernel\\) but return statement is missing\\.$#"
count: 1 count: 1
@ -535,51 +415,21 @@ parameters:
count: 2 count: 2
path: lib/Drupal/Core/TypedData/TypedData.php path: lib/Drupal/Core/TypedData/TypedData.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\TypedData\\\\Validation\\\\RecursiveContextualValidator\\:\\:\\$typedDataManager\\.$#"
count: 2
path: lib/Drupal/Core/TypedData/Validation/RecursiveContextualValidator.php
- -
message: "#^Method Drupal\\\\Core\\\\Update\\\\UpdateKernel\\:\\:discoverServiceProviders\\(\\) should return array but return statement is missing\\.$#" message: "#^Method Drupal\\\\Core\\\\Update\\\\UpdateKernel\\:\\:discoverServiceProviders\\(\\) should return array but return statement is missing\\.$#"
count: 1 count: 1
path: lib/Drupal/Core/Update/UpdateKernel.php path: lib/Drupal/Core/Update/UpdateKernel.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Updater\\\\Module\\:\\:\\$name\\.$#"
count: 6
path: lib/Drupal/Core/Updater/Module.php
- -
message: "#^Method Drupal\\\\Core\\\\Updater\\\\Module\\:\\:postUpdateTasks\\(\\) should return array but return statement is missing\\.$#" message: "#^Method Drupal\\\\Core\\\\Updater\\\\Module\\:\\:postUpdateTasks\\(\\) should return array but return statement is missing\\.$#"
count: 1 count: 1
path: lib/Drupal/Core/Updater/Module.php path: lib/Drupal/Core/Updater/Module.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Updater\\\\Theme\\:\\:\\$name\\.$#"
count: 2
path: lib/Drupal/Core/Updater/Theme.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Updater\\\\Updater\\:\\:\\$name\\.$#"
count: 3
path: lib/Drupal/Core/Updater/Updater.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Updater\\\\Updater\\:\\:\\$title\\.$#"
count: 1
path: lib/Drupal/Core/Updater/Updater.php
- -
message: "#^Call to an undefined method Drupal\\\\Core\\\\Updater\\\\Updater\\:\\:getInstallDirectory\\(\\)\\.$#" message: "#^Call to an undefined method Drupal\\\\Core\\\\Updater\\\\Updater\\:\\:getInstallDirectory\\(\\)\\.$#"
count: 1 count: 1
path: lib/Drupal/Core/Updater/Updater.php path: lib/Drupal/Core/Updater/Updater.php
-
message: "#^Access to an undefined property Drupal\\\\Core\\\\Validation\\\\ConstraintValidatorFactory\\:\\:\\$classResolver\\.$#"
count: 2
path: lib/Drupal/Core/Validation/ConstraintValidatorFactory.php
- -
message: "#^Method Drupal\\\\action\\\\Form\\\\ActionFormBase\\:\\:save\\(\\) should return int but return statement is missing\\.$#" message: "#^Method Drupal\\\\action\\\\Form\\\\ActionFormBase\\:\\:save\\(\\) should return int but return statement is missing\\.$#"
count: 1 count: 1
@ -600,16 +450,6 @@ parameters:
count: 1 count: 1
path: modules/big_pipe/tests/modules/big_pipe_test/src/BigPipePlaceholderTestCases.php path: modules/big_pipe/tests/modules/big_pipe_test/src/BigPipePlaceholderTestCases.php
-
message: "#^Access to an undefined property Drupal\\\\block\\\\Plugin\\\\migrate\\\\process\\\\BlockTheme\\:\\:\\$themes\\.$#"
count: 1
path: modules/block/src/Plugin/migrate/process/BlockTheme.php
-
message: "#^Access to an undefined property Drupal\\\\block_test\\\\Plugin\\\\Block\\\\TestAccessBlock\\:\\:\\$state\\.$#"
count: 2
path: modules/block/tests/modules/block_test/src/Plugin/Block/TestAccessBlock.php
- -
message: "#^Method Drupal\\\\block_content\\\\BlockContentForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#" message: "#^Method Drupal\\\\block_content\\\\BlockContentForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#"
count: 1 count: 1
@ -695,46 +535,6 @@ parameters:
count: 1 count: 1
path: modules/comment/src/Plugin/views/field/NodeNewComments.php path: modules/comment/src/Plugin/views/field/NodeNewComments.php
-
message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\field\\\\StatisticsLastCommentName\\:\\:\\$user_field\\.$#"
count: 1
path: modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php
-
message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\field\\\\StatisticsLastCommentName\\:\\:\\$user_table\\.$#"
count: 1
path: modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php
-
message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\field\\\\StatisticsLastUpdated\\:\\:\\$node_table\\.$#"
count: 1
path: modules/comment/src/Plugin/views/field/StatisticsLastUpdated.php
-
message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\filter\\\\StatisticsLastUpdated\\:\\:\\$node_table\\.$#"
count: 1
path: modules/comment/src/Plugin/views/filter/StatisticsLastUpdated.php
-
message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\sort\\\\StatisticsLastCommentName\\:\\:\\$user_field\\.$#"
count: 1
path: modules/comment/src/Plugin/views/sort/StatisticsLastCommentName.php
-
message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\sort\\\\StatisticsLastCommentName\\:\\:\\$user_table\\.$#"
count: 1
path: modules/comment/src/Plugin/views/sort/StatisticsLastCommentName.php
-
message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\sort\\\\StatisticsLastUpdated\\:\\:\\$field_alias\\.$#"
count: 1
path: modules/comment/src/Plugin/views/sort/StatisticsLastUpdated.php
-
message: "#^Access to an undefined property Drupal\\\\comment\\\\Plugin\\\\views\\\\sort\\\\StatisticsLastUpdated\\:\\:\\$node_table\\.$#"
count: 1
path: modules/comment/src/Plugin/views/sort/StatisticsLastUpdated.php
- -
message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#" message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
count: 1 count: 1
@ -875,11 +675,6 @@ parameters:
count: 1 count: 1
path: modules/field_ui/src/Form/FieldStorageConfigEditForm.php path: modules/field_ui/src/Form/FieldStorageConfigEditForm.php
-
message: "#^Access to an undefined property Drupal\\\\field_ui\\\\Plugin\\\\Derivative\\\\FieldUiLocalAction\\:\\:\\$routeProvider\\.$#"
count: 1
path: modules/field_ui/src/Plugin/Derivative/FieldUiLocalAction.php
- -
message: "#^Method Drupal\\\\file\\\\Plugin\\\\Field\\\\FieldType\\\\FileFieldItemList\\:\\:defaultValuesForm\\(\\) should return array but return statement is missing\\.$#" message: "#^Method Drupal\\\\file\\\\Plugin\\\\Field\\\\FieldType\\\\FileFieldItemList\\:\\:defaultValuesForm\\(\\) should return array but return statement is missing\\.$#"
count: 1 count: 1
@ -890,16 +685,6 @@ parameters:
count: 1 count: 1
path: modules/file/src/Plugin/Field/FieldType/FileFieldItemList.php path: modules/file/src/Plugin/Field/FieldType/FileFieldItemList.php
-
message: "#^Access to an undefined property Drupal\\\\file\\\\Plugin\\\\Field\\\\FieldWidget\\\\FileWidget\\:\\:\\$elementInfo\\.$#"
count: 2
path: modules/file/src/Plugin/Field/FieldWidget/FileWidget.php
-
message: "#^Access to an undefined property Drupal\\\\file\\\\Plugin\\\\migrate\\\\process\\\\d6\\\\FieldFile\\:\\:\\$migration\\.$#"
count: 1
path: modules/file/src/Plugin/migrate/process/d6/FieldFile.php
- -
message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#" message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
count: 2 count: 2
@ -930,21 +715,11 @@ parameters:
count: 2 count: 2
path: modules/file/tests/src/Kernel/UsageTest.php path: modules/file/tests/src/Kernel/UsageTest.php
-
message: "#^Access to an undefined property Drupal\\\\filter\\\\Plugin\\\\migrate\\\\process\\\\d6\\\\FilterFormatPermission\\:\\:\\$migration\\.$#"
count: 1
path: modules/filter/src/Plugin/migrate/process/d6/FilterFormatPermission.php
- -
message: "#^Method Drupal\\\\forum\\\\ForumManager\\:\\:getTopicOrder\\(\\) should return array but return statement is missing\\.$#" message: "#^Method Drupal\\\\forum\\\\ForumManager\\:\\:getTopicOrder\\(\\) should return array but return statement is missing\\.$#"
count: 1 count: 1
path: modules/forum/src/ForumManager.php path: modules/forum/src/ForumManager.php
-
message: "#^Access to an undefined property Drupal\\\\help_topics\\\\Plugin\\\\HelpSection\\\\HelpTopicSection\\:\\:\\$translationManager\\.$#"
count: 3
path: modules/help_topics/src/Plugin/HelpSection/HelpTopicSection.php
- -
message: "#^Method Drupal\\\\history\\\\Plugin\\\\views\\\\field\\\\HistoryUserTimestamp\\:\\:render\\(\\) should return Drupal\\\\Component\\\\Render\\\\MarkupInterface\\|string but return statement is missing\\.$#" message: "#^Method Drupal\\\\history\\\\Plugin\\\\views\\\\field\\\\HistoryUserTimestamp\\:\\:render\\(\\) should return Drupal\\\\Component\\\\Render\\\\MarkupInterface\\|string but return statement is missing\\.$#"
count: 1 count: 1
@ -980,11 +755,6 @@ parameters:
count: 1 count: 1
path: modules/jsonapi/src/Revisions/VersionNegotiator.php path: modules/jsonapi/src/Revisions/VersionNegotiator.php
-
message: "#^Access to an undefined property Drupal\\\\Tests\\\\jsonapi\\\\Functional\\\\RestJsonApiUnsupported\\:\\:\\$httpClient\\.$#"
count: 1
path: modules/jsonapi/tests/src/Functional/RestJsonApiUnsupported.php
- -
message: "#^Method Drupal\\\\language\\\\Form\\\\LanguageAddForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#" message: "#^Method Drupal\\\\language\\\\Form\\\\LanguageAddForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#"
count: 1 count: 1
@ -995,11 +765,6 @@ parameters:
count: 1 count: 1
path: modules/language/src/Form/LanguageEditForm.php path: modules/language/src/Form/LanguageEditForm.php
-
message: "#^Access to an undefined property Drupal\\\\language\\\\LanguageNegotiationMethodManager\\:\\:\\$cacheKeyPrefix\\.$#"
count: 1
path: modules/language/src/LanguageNegotiationMethodManager.php
- -
message: "#^Call to an undefined method Drupal\\\\Tests\\\\layout_builder\\\\Unit\\\\DefaultsSectionStorageTest\\:\\:getThirdPartySetting\\(\\)\\.$#" message: "#^Call to an undefined method Drupal\\\\Tests\\\\layout_builder\\\\Unit\\\\DefaultsSectionStorageTest\\:\\:getThirdPartySetting\\(\\)\\.$#"
count: 1 count: 1
@ -1025,11 +790,6 @@ parameters:
count: 1 count: 1
path: modules/locale/src/LocaleDefaultConfigStorage.php path: modules/locale/src/LocaleDefaultConfigStorage.php
-
message: "#^Access to an undefined property Drupal\\\\locale\\\\LocaleEvent\\:\\:\\$lids\\.$#"
count: 2
path: modules/locale/src/LocaleEvent.php
- -
message: "#^Method Drupal\\\\locale\\\\LocaleProjectStorage\\:\\:deleteAll\\(\\) should return array but return statement is missing\\.$#" message: "#^Method Drupal\\\\locale\\\\LocaleProjectStorage\\:\\:deleteAll\\(\\) should return array but return statement is missing\\.$#"
count: 1 count: 1
@ -1100,11 +860,6 @@ parameters:
count: 1 count: 1
path: modules/migrate/src/Plugin/migrate/destination/Config.php path: modules/migrate/src/Plugin/migrate/destination/Config.php
-
message: "#^Access to an undefined property Drupal\\\\migrate\\\\Plugin\\\\migrate\\\\destination\\\\Entity\\:\\:\\$entityFieldManager\\.$#"
count: 1
path: modules/migrate/src/Plugin/migrate/destination/Entity.php
- -
message: "#^Call to an undefined method Drupal\\\\migrate\\\\Plugin\\\\migrate\\\\destination\\\\Entity\\:\\:processStubRow\\(\\)\\.$#" message: "#^Call to an undefined method Drupal\\\\migrate\\\\Plugin\\\\migrate\\\\destination\\\\Entity\\:\\:processStubRow\\(\\)\\.$#"
count: 1 count: 1
@ -1125,11 +880,6 @@ parameters:
count: 1 count: 1
path: modules/migrate/src/Plugin/migrate/destination/NullDestination.php path: modules/migrate/src/Plugin/migrate/destination/NullDestination.php
-
message: "#^Access to an undefined property Drupal\\\\migrate\\\\Plugin\\\\migrate\\\\process\\\\Route\\:\\:\\$migration\\.$#"
count: 1
path: modules/migrate/src/Plugin/migrate/process/Route.php
- -
message: "#^Call to an undefined static method static\\(Drupal\\\\Tests\\\\migrate\\\\Kernel\\\\MigrateTestBase\\)\\:\\:migrateDumpAlter\\(\\)\\.$#" message: "#^Call to an undefined static method static\\(Drupal\\\\Tests\\\\migrate\\\\Kernel\\\\MigrateTestBase\\)\\:\\:migrateDumpAlter\\(\\)\\.$#"
count: 1 count: 1
@ -1405,11 +1155,6 @@ parameters:
count: 1 count: 1
path: modules/system/src/Form/ModulesListNonStableConfirmForm.php path: modules/system/src/Form/ModulesListNonStableConfirmForm.php
-
message: "#^Access to an undefined property Drupal\\\\accept_header_routing_test\\\\AcceptHeaderMiddleware\\:\\:\\$app\\.$#"
count: 2
path: modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderMiddleware.php
- -
message: "#^Class Drupal\\\\advisory_feed_test\\\\AdvisoriesTestHttpClient extends @final class GuzzleHttp\\\\Client\\.$#" message: "#^Class Drupal\\\\advisory_feed_test\\\\AdvisoriesTestHttpClient extends @final class GuzzleHttp\\\\Client\\.$#"
count: 1 count: 1
@ -1435,21 +1180,6 @@ parameters:
count: 1 count: 1
path: modules/system/tests/modules/entity_test/src/Plugin/Field/FieldType/ChangedTestItem.php path: modules/system/tests/modules/entity_test/src/Plugin/Field/FieldType/ChangedTestItem.php
-
message: "#^Access to an undefined property Drupal\\\\error_service_test\\\\Controller\\\\LonelyMonkeyController\\:\\:\\$class\\.$#"
count: 1
path: modules/system/tests/modules/error_service_test/src/Controller/LonelyMonkeyController.php
-
message: "#^Access to an undefined property Drupal\\\\error_service_test\\\\LonelyMonkeyClass\\:\\:\\$connection\\.$#"
count: 1
path: modules/system/tests/modules/error_service_test/src/LonelyMonkeyClass.php
-
message: "#^Access to an undefined property Drupal\\\\error_service_test\\\\MonkeysInTheControlRoom\\:\\:\\$settings\\.$#"
count: 2
path: modules/system/tests/modules/error_service_test/src/MonkeysInTheControlRoom.php
- -
message: "#^Result of function usleep \\(void\\) is used\\.$#" message: "#^Result of function usleep \\(void\\) is used\\.$#"
count: 1 count: 1
@ -1560,11 +1290,6 @@ parameters:
count: 1 count: 1
path: modules/tour/src/TipPluginBase.php path: modules/tour/src/TipPluginBase.php
-
message: "#^Access to an undefined property Drupal\\\\update\\\\UpdateProcessor\\:\\:\\$fetchTasks\\.$#"
count: 2
path: modules/update/src/UpdateProcessor.php
- -
message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#" message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
count: 4 count: 4
@ -1585,11 +1310,6 @@ parameters:
count: 1 count: 1
path: modules/user/src/Plugin/views/field/UserData.php path: modules/user/src/Plugin/views/field/UserData.php
-
message: "#^Access to an undefined property Drupal\\\\user\\\\Plugin\\\\views\\\\filter\\\\Name\\:\\:\\$validated_exposed_input\\.$#"
count: 1
path: modules/user/src/Plugin/views/filter/Name.php
- -
message: "#^Method Drupal\\\\user\\\\ProfileForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#" message: "#^Method Drupal\\\\user\\\\ProfileForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#"
count: 1 count: 1
@ -1725,21 +1445,11 @@ parameters:
count: 2 count: 2
path: modules/views/src/Plugin/views/filter/FilterPluginBase.php path: modules/views/src/Plugin/views/filter/FilterPluginBase.php
-
message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\query\\\\QueryPluginBase\\:\\:\\$groupOperator\\.$#"
count: 1
path: modules/views/src/Plugin/views/query/QueryPluginBase.php
- -
message: "#^Undefined variable\\: \\$def$#" message: "#^Undefined variable\\: \\$def$#"
count: 2 count: 2
path: modules/views/src/Plugin/views/relationship/EntityReverse.php path: modules/views/src/Plugin/views/relationship/EntityReverse.php
-
message: "#^Access to an undefined property Drupal\\\\views\\\\Plugin\\\\views\\\\sort\\\\GroupByNumeric\\:\\:\\$handler\\.$#"
count: 1
path: modules/views/src/Plugin/views/sort/GroupByNumeric.php
- -
message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#" message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
count: 1 count: 1
@ -1835,16 +1545,6 @@ parameters:
count: 1 count: 1
path: modules/views_ui/src/ViewEditForm.php path: modules/views_ui/src/ViewEditForm.php
-
message: "#^Access to an undefined property Drupal\\\\views_ui\\\\ViewUI\\:\\:\\$ajax\\.$#"
count: 1
path: modules/views_ui/src/ViewUI.php
-
message: "#^Access to an undefined property Drupal\\\\views_ui\\\\ViewUI\\:\\:\\$entityType\\.$#"
count: 1
path: modules/views_ui/src/ViewUI.php
- -
message: "#^Method Drupal\\\\views_ui\\\\ViewUI\\:\\:getTypedData\\(\\) should return Drupal\\\\Core\\\\TypedData\\\\ComplexDataInterface but return statement is missing\\.$#" message: "#^Method Drupal\\\\views_ui\\\\ViewUI\\:\\:getTypedData\\(\\) should return Drupal\\\\Core\\\\TypedData\\\\ComplexDataInterface but return statement is missing\\.$#"
count: 1 count: 1
@ -1905,11 +1605,6 @@ parameters:
count: 1 count: 1
path: modules/workspaces/src/WorkspacePublisher.php path: modules/workspaces/src/WorkspacePublisher.php
-
message: "#^Access to an undefined property Drupal\\\\demo_umami_content\\\\InstallHelper\\:\\:\\$module_path\\.$#"
count: 5
path: profiles/demo_umami/modules/demo_umami_content/src/InstallHelper.php
- -
message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#" message: "#^Call to deprecated constant REQUEST_TIME\\: Deprecated in drupal\\:8\\.3\\.0 and is removed from drupal\\:10\\.0\\.0\\. Use \\\\Drupal\\:\\:time\\(\\)\\-\\>getRequestTime\\(\\); $#"
count: 12 count: 12
@ -1985,36 +1680,6 @@ parameters:
count: 1 count: 1
path: tests/Drupal/KernelTests/KernelTestBaseTest.php path: tests/Drupal/KernelTests/KernelTestBaseTest.php
-
message: "#^Access to an undefined property Drupal\\\\KernelTests\\\\RouteProvider\\:\\:\\$service\\.$#"
count: 1
path: tests/Drupal/KernelTests/RouteProvider.php
-
message: "#^Access to an undefined property Drupal\\\\TestSite\\\\Commands\\\\TestSiteInstallCommand\\:\\:\\$baseUrl\\.$#"
count: 1
path: tests/Drupal/TestSite/Commands/TestSiteInstallCommand.php
-
message: "#^Access to an undefined property Drupal\\\\TestSite\\\\Commands\\\\TestSiteInstallCommand\\:\\:\\$configImporter\\.$#"
count: 1
path: tests/Drupal/TestSite/Commands/TestSiteInstallCommand.php
-
message: "#^Access to an undefined property Drupal\\\\TestSite\\\\Commands\\\\TestSiteInstallCommand\\:\\:\\$defaultTheme\\.$#"
count: 2
path: tests/Drupal/TestSite/Commands/TestSiteInstallCommand.php
-
message: "#^Access to an undefined property Drupal\\\\TestSite\\\\Commands\\\\TestSiteInstallCommand\\:\\:\\$originalShutdownCallbacks\\.$#"
count: 1
path: tests/Drupal/TestSite/Commands/TestSiteInstallCommand.php
-
message: "#^Access to an undefined property Drupal\\\\TestSite\\\\Commands\\\\TestSiteInstallCommand\\:\\:\\$translationFilesDirectory\\.$#"
count: 1
path: tests/Drupal/TestSite/Commands/TestSiteInstallCommand.php
- -
message: "#^Call to an undefined method Drupal\\\\TestSite\\\\Commands\\\\TestSiteInstallCommand\\:\\:assertTrue\\(\\)\\.$#" message: "#^Call to an undefined method Drupal\\\\TestSite\\\\Commands\\\\TestSiteInstallCommand\\:\\:assertTrue\\(\\)\\.$#"
count: 1 count: 1
@ -2055,11 +1720,6 @@ parameters:
count: 1 count: 1
path: tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php path: tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php
-
message: "#^Access to an undefined property Drupal\\\\Tests\\\\Component\\\\PhpStorage\\\\MTimeProtectedFileStorageBase\\:\\:\\$expected\\.$#"
count: 3
path: tests/Drupal/Tests/Component/PhpStorage/MTimeProtectedFileStorageBase.php
- -
message: "#^Cannot unset offset int on array\\<string, mixed\\>\\.$#" message: "#^Cannot unset offset int on array\\<string, mixed\\>\\.$#"
count: 1 count: 1

View File

@ -88,6 +88,11 @@ class InstallHelper implements ContainerInjectionInterface {
*/ */
protected $nodeIdMap; protected $nodeIdMap;
/**
* The module's path.
*/
protected string $module_path;
/** /**
* Constructs a new InstallHelper object. * Constructs a new InstallHelper object.
* *

View File

@ -261,7 +261,7 @@ class UncaughtExceptionTest extends BrowserTestBase {
$this->assertStringContainsString('Failed to log error', $errors[0], 'The error handling logs when an error could not be logged to the logger.'); $this->assertStringContainsString('Failed to log error', $errors[0], 'The error handling logs when an error could not be logged to the logger.');
$expected_path = \Drupal::root() . '/core/modules/system/tests/modules/error_service_test/src/MonkeysInTheControlRoom.php'; $expected_path = \Drupal::root() . '/core/modules/system/tests/modules/error_service_test/src/MonkeysInTheControlRoom.php';
$expected_line = 62; $expected_line = 67;
$expected_entry = "Failed to log error: Exception: Deforestation in Drupal\\error_service_test\\MonkeysInTheControlRoom->handle() (line {$expected_line} of {$expected_path})"; $expected_entry = "Failed to log error: Exception: Deforestation in Drupal\\error_service_test\\MonkeysInTheControlRoom->handle() (line {$expected_line} of {$expected_path})";
$this->assertStringContainsString($expected_entry, $errors[0], 'Original error logged to the PHP error log when an exception is thrown by a logger'); $this->assertStringContainsString($expected_entry, $errors[0], 'Original error logged to the PHP error log when an exception is thrown by a logger');

View File

@ -3,6 +3,7 @@
namespace Drupal\KernelTests; namespace Drupal\KernelTests;
use Drupal\Core\Routing\PreloadableRouteProviderInterface; use Drupal\Core\Routing\PreloadableRouteProviderInterface;
use Drupal\Core\Routing\RouteProvider as RouteProviderBase;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;
/** /**
@ -12,6 +13,11 @@ class RouteProvider implements PreloadableRouteProviderInterface {
use \Drupal\Core\DependencyInjection\DependencySerializationTrait; use \Drupal\Core\DependencyInjection\DependencySerializationTrait;
/**
* The route provider service.
*/
protected RouteProviderBase $service;
/** /**
* Loads the real route provider from the container and rebuilds the router. * Loads the real route provider from the container and rebuilds the router.
* *

View File

@ -2,6 +2,7 @@
namespace Drupal\TestSite\Commands; namespace Drupal\TestSite\Commands;
use Drupal\Core\Config\ConfigImporter;
use Drupal\Core\Database\Database; use Drupal\Core\Database\Database;
use Drupal\Core\Test\FunctionalTestSetupTrait; use Drupal\Core\Test\FunctionalTestSetupTrait;
use Drupal\Core\Test\TestDatabase; use Drupal\Core\Test\TestDatabase;
@ -30,6 +31,35 @@ class TestSiteInstallCommand extends Command {
changeDatabasePrefix as protected changeDatabasePrefixTrait; changeDatabasePrefix as protected changeDatabasePrefixTrait;
} }
/**
* The theme to install as the default for testing.
*
* Defaults to the install profile's default theme, if it specifies any.
*/
protected string $defaultTheme;
/**
* The base URL.
*/
protected string $baseUrl;
/**
* The original array of shutdown function callbacks.
*/
protected array $originalShutdownCallbacks = [];
/**
* The translation file directory for the test environment.
*
* This is set in BrowserTestBase::prepareEnvironment().
*/
protected string $translationFilesDirectory;
/**
* The config importer that can be used in a test.
*/
protected ?ConfigImporter $configImporter;
/** /**
* The install profile to use. * The install profile to use.
* *

View File

@ -19,7 +19,7 @@ class MTimeProtectedFastFileStorageTest extends MTimeProtectedFileStorageBase {
* include the hacked file on the first try but the second test will change * include the hacked file on the first try but the second test will change
* the directory mtime and so on the second try the file will not be included. * the directory mtime and so on the second try the file will not be included.
*/ */
protected $expected = [TRUE, FALSE]; protected array $expected = [TRUE, FALSE];
/** /**
* The PHP storage class to test. * The PHP storage class to test.

View File

@ -34,6 +34,11 @@ abstract class MTimeProtectedFileStorageBase extends PhpStorageTestBase {
*/ */
protected $settings; protected $settings;
/**
* The expected test results for the security test.
*/
protected array $expected;
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */

View File

@ -18,7 +18,7 @@ class MTimeProtectedFileStorageTest extends MTimeProtectedFileStorageBase {
* The default implementation protects against even the filemtime change so * The default implementation protects against even the filemtime change so
* both iterations will return FALSE. * both iterations will return FALSE.
*/ */
protected $expected = [FALSE, FALSE]; protected array $expected = [FALSE, FALSE];
/** /**
* The PHP storage class to test. * The PHP storage class to test.