Skip to content
Snippets Groups Projects
Verified Commit 381ed6f2 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3309047 by mondrake: Fix 'should return {type} but return statement is...

Issue #3309047 by mondrake: Fix 'should return {type} but return statement is missing' PHPStan L0 errors in test code

(cherry picked from commit 830646e6)
parent 2d36c6f3
No related branches found
No related tags found
17 merge requests!8506Draft: Issue #3456536 by ibrahim tameme,!5646Issue #3350972 by nod_: [random test failure]...,!5600Issue #3350972 by nod_: [random test failure]...,!5343Issue #3305066 by quietone, Rename RedirectLeadingSlashesSubscriber,!3603#ISSUE 3346218 Add a different message on edit comment,!3555Issue #2473873: Views entity operations lack cacheability support, resulting in incorrect dropbuttons,!3494Issue #3327018 by Spokje, longwave, xjm, mondrake: Update PHPStan to 1.9.3 and...,!3410Issue #3340128: UserLoginForm::submitForm has some dead code,!3389Issue #3325184 by Spokje, andypost, xjm, smustgrave: $this->configFactory is...,!3381Issue #3332363: Refactor Claro's menus-and-lists stylesheet,!3307Issue #3326193: CKEditor 5 can grow past the viewport when there is a lot of content,!3236Issue #3332419: Refactor Claro's messages stylesheet,!3231Draft: Issue #3049525 by longwave, fougere, larowlan, kim.pepper, AaronBauman, Wim...,!3212Issue #3294003: Refactor Claro's entity-meta stylesheet,!3194Issue #3330981: Fix PHPStan L1 error "Relying on entity queries to check access by default is deprecated...",!3143Issue #3313342: [PHP 8.1] Deprecated function: strpos(): Passing null to parameter #1 LayoutBuilderUiCacheContext.php on line 28,!2972Issue #1845004: Replace custom password hashing library with PHP 5.5 password_hash()
Showing
with 23 additions and 94 deletions
......@@ -20,7 +20,7 @@ interface DeriverInterface {
* is derived. It is maybe an entire object or just some array, depending
* on the discovery mechanism.
*
* @return array
* @return array|null
* The full definition array of the derivative plugin, typically a merge of
* $base_plugin_definition with extra derivative-specific information. NULL
* if the derivative doesn't exist.
......
......@@ -83,6 +83,8 @@ public function boot() {
if (!is_dir('public://simpletest') && !@mkdir('public://simpletest', 0777, TRUE) && !is_dir('public://simpletest')) {
throw new \RuntimeException('Unable to create directory: public://simpletest');
}
return $this;
}
/**
......@@ -93,6 +95,7 @@ public function discoverServiceProviders() {
// The test runner does not require an installed Drupal site to exist.
// Therefore, its environment is identical to that of the early installer.
$this->serviceProviderClasses['app']['Test'] = 'Drupal\Core\Installer\InstallerServiceProvider';
return $this->serviceProviderClasses;
}
}
......@@ -146,6 +146,7 @@ public function save(array $form, FormStateInterface $form_state) {
}
$form_state->setRedirectUrl($this->entity->toUrl('collection'));
return $status;
}
/**
......
......@@ -16,16 +16,22 @@ class NoSourceModule extends DrupalSqlBase {
/**
* {@inheritdoc}
*/
public function query() {}
public function query() {
throw new \BadMethodCallException('This method should never be called');
}
/**
* {@inheritdoc}
*/
public function fields() {}
public function fields() {
throw new \BadMethodCallException('This method should never be called');
}
/**
* {@inheritdoc}
*/
public function getIds() {}
public function getIds() {
throw new \BadMethodCallException('This method should never be called');
}
}
......@@ -26,6 +26,7 @@ public function setSearch($keywords, array $parameters, array $attributes) {
$parameters['search_conditions'] = '';
}
parent::setSearch($keywords, $parameters, $attributes);
return $this;
}
/**
......
......@@ -72,7 +72,7 @@ public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
public function save() {
// Ensure a new timestamp.
sleep(1);
parent::save();
return parent::save();
}
}
......@@ -57,7 +57,7 @@ public function save(array $form, FormStateInterface $form_state) {
}
$is_new = $entity->isNew();
$entity->save();
$status = $entity->save();
if ($is_new) {
$message = t('%entity_type @id has been created.', ['@id' => $entity->id(), '%entity_type' => $entity->getEntityTypeId()]);
......@@ -83,6 +83,7 @@ public function save(array $form, FormStateInterface $form_state) {
catch (\Exception $e) {
\Drupal::state()->set('entity_test.form.save.exception', get_class($e) . ': ' . $e->getMessage());
}
return $status ?? FALSE;
}
}
......@@ -21,6 +21,7 @@ public function arguments() {
*/
public function execute(array $arguments) {
// Nothing to do.
return TRUE;
}
}
......@@ -22,6 +22,7 @@ public function getDerivativeDefinition($derivative_id, $base_plugin_definition)
if (isset($derivatives[$derivative_id])) {
return $derivatives[$derivative_id];
}
return NULL;
}
/**
......
......@@ -22,6 +22,7 @@ public function getDerivativeDefinition($derivative_id, $base_plugin_definition)
if (isset($derivatives[$derivative_id])) {
return $derivatives[$derivative_id];
}
return NULL;
}
/**
......
......@@ -23,6 +23,7 @@ public function delete(FileInterface $file, $module, $type = NULL, $id = NULL, $
* {@inheritdoc}
*/
public function listUsage(FileInterface $file) {
return [];
}
}
......@@ -23,9 +23,7 @@ protected function defineOptions() {
}
/**
* Overrides Drupal\views\Plugin\views\row\RowPluginBase::buildOptionsForm().
*
* @return array
* {@inheritdoc}
*/
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
......
......@@ -235,11 +235,6 @@ parameters:
count: 1
path: lib/Drupal/Core/Entity/KeyValueStore/KeyValueContentEntityStorage.php
-
message: "#^Method Drupal\\\\Core\\\\Entity\\\\Plugin\\\\DataType\\\\Deriver\\\\EntityDeriver\\:\\:getDerivativeDefinition\\(\\) should return array but return statement is missing\\.$#"
count: 1
path: lib/Drupal/Core/Entity/Plugin/DataType/Deriver/EntityDeriver.php
-
message: "#^Method Drupal\\\\Core\\\\Entity\\\\Query\\\\QueryBase\\:\\:getClass\\(\\) should return string but return statement is missing\\.$#"
count: 1
......@@ -290,11 +285,6 @@ parameters:
count: 1
path: lib/Drupal/Core/Field/FieldTypePluginManager.php
-
message: "#^Method Drupal\\\\Core\\\\Field\\\\Plugin\\\\DataType\\\\Deriver\\\\FieldItemDeriver\\:\\:getDerivativeDefinition\\(\\) should return array but return statement is missing\\.$#"
count: 1
path: lib/Drupal/Core/Field/Plugin/DataType/Deriver/FieldItemDeriver.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\\(\\); $#"
count: 1
......@@ -395,16 +385,6 @@ parameters:
count: 1
path: lib/Drupal/Core/Template/TwigPhpStorageCache.php
-
message: "#^Method Drupal\\\\Core\\\\Test\\\\TestRunnerKernel\\:\\:boot\\(\\) should return \\$this\\(Drupal\\\\Core\\\\Test\\\\TestRunnerKernel\\) but return statement is missing\\.$#"
count: 1
path: lib/Drupal/Core/Test/TestRunnerKernel.php
-
message: "#^Method Drupal\\\\Core\\\\Test\\\\TestRunnerKernel\\:\\:discoverServiceProviders\\(\\) should return array but return statement is missing\\.$#"
count: 1
path: lib/Drupal/Core/Test/TestRunnerKernel.php
-
message: "#^Method Drupal\\\\Core\\\\Theme\\\\ThemeInitialization\\:\\:resolveStyleSheetPlaceholders\\(\\) should return string but return statement is missing\\.$#"
count: 1
......@@ -560,11 +540,6 @@ parameters:
count: 1
path: modules/comment/tests/src/Functional/Views/DefaultViewRecentCommentsTest.php
-
message: "#^Method Drupal\\\\config_test\\\\ConfigTestForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#"
count: 1
path: modules/config/tests/config_test/src/ConfigTestForm.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\\(\\); $#"
count: 1
......@@ -905,21 +880,6 @@ parameters:
count: 1
path: modules/migrate_drupal_ui/src/Form/ReviewForm.php
-
message: "#^Method Drupal\\\\migration_provider_test\\\\Plugin\\\\migrate\\\\source\\\\NoSourceModule\\:\\:fields\\(\\) should return array but return statement is missing\\.$#"
count: 1
path: modules/migrate_drupal_ui/tests/modules/migration_provider_test/src/Plugin/migrate/source/NoSourceModule.php
-
message: "#^Method Drupal\\\\migration_provider_test\\\\Plugin\\\\migrate\\\\source\\\\NoSourceModule\\:\\:getIds\\(\\) should return array\\<array\\> but return statement is missing\\.$#"
count: 1
path: modules/migrate_drupal_ui/tests/modules/migration_provider_test/src/Plugin/migrate/source/NoSourceModule.php
-
message: "#^Method Drupal\\\\migration_provider_test\\\\Plugin\\\\migrate\\\\source\\\\NoSourceModule\\:\\:query\\(\\) should return Drupal\\\\Core\\\\Database\\\\Query\\\\SelectInterface but return statement is missing\\.$#"
count: 1
path: modules/migrate_drupal_ui/tests/modules/migration_provider_test/src/Plugin/migrate/source/NoSourceModule.php
-
message: "#^Call to an undefined method Drupal\\\\Tests\\\\migrate_drupal_ui\\\\Functional\\\\CredentialFormTest\\:\\:installEntitySchema\\(\\)\\.$#"
count: 8
......@@ -1055,11 +1015,6 @@ parameters:
count: 1
path: modules/responsive_image/src/ResponsiveImageStyleForm.php
-
message: "#^Method Drupal\\\\rest\\\\Plugin\\\\Deriver\\\\EntityDeriver\\:\\:getDerivativeDefinition\\(\\) should return array but return statement is missing\\.$#"
count: 1
path: modules/rest/src/Plugin/Deriver/EntityDeriver.php
-
message: "#^Method Drupal\\\\rest\\\\Routing\\\\ResourceRoutes\\:\\:onDynamicRouteEvent\\(\\) should return array but return statement is missing\\.$#"
count: 1
......@@ -1090,11 +1045,6 @@ parameters:
count: 1
path: modules/search/src/SearchPageRepository.php
-
message: "#^Method Drupal\\\\search_extra_type\\\\Plugin\\\\Search\\\\SearchExtraTypeSearch\\:\\:setSearch\\(\\) should return \\$this\\(Drupal\\\\search_extra_type\\\\Plugin\\\\Search\\\\SearchExtraTypeSearch\\) but return statement is missing\\.$#"
count: 1
path: modules/search/tests/modules/search_extra_type/src/Plugin/Search/SearchExtraTypeSearch.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\\(\\); $#"
count: 1
......@@ -1170,16 +1120,6 @@ parameters:
count: 2
path: modules/system/tests/modules/entity_test/entity_test.install
-
message: "#^Method Drupal\\\\entity_test\\\\Entity\\\\EntityTestMulChanged\\:\\:save\\(\\) should return int but return statement is missing\\.$#"
count: 1
path: modules/system/tests/modules/entity_test/src/Entity/EntityTestMulChanged.php
-
message: "#^Method Drupal\\\\entity_test\\\\EntityTestForm\\:\\:save\\(\\) should return int but return statement is missing\\.$#"
count: 1
path: modules/system/tests/modules/entity_test/src/EntityTestForm.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\\(\\); $#"
count: 1
......@@ -1190,31 +1130,11 @@ parameters:
count: 1
path: modules/system/tests/modules/hold_test/src/EventSubscriber/HoldTestSubscriber.php
-
message: "#^Method Drupal\\\\image_test\\\\Plugin\\\\ImageToolkit\\\\Operation\\\\test\\\\OperationBase\\:\\:execute\\(\\) should return bool but return statement is missing\\.$#"
count: 1
path: modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/Operation/test/OperationBase.php
-
message: "#^Configuration entity must define a `config_export` key\\. See https\\://www\\.drupal\\.org/node/2481909$#"
count: 1
path: modules/system/tests/modules/module_installer_config_test/src/Entity/TestConfigType.php
-
message: "#^Method Drupal\\\\plugin_test\\\\Plugin\\\\plugin_test\\\\mock_block\\\\MockLayoutBlockDeriver\\:\\:getDerivativeDefinition\\(\\) should return array but return statement is missing\\.$#"
count: 1
path: modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockLayoutBlockDeriver.php
-
message: "#^Method Drupal\\\\plugin_test\\\\Plugin\\\\plugin_test\\\\mock_block\\\\MockMenuBlockDeriver\\:\\:getDerivativeDefinition\\(\\) should return array but return statement is missing\\.$#"
count: 1
path: modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockMenuBlockDeriver.php
-
message: "#^Method Drupal\\\\service_provider_test\\\\TestFileUsage\\:\\:listUsage\\(\\) should return array but return statement is missing\\.$#"
count: 1
path: modules/system/tests/modules/service_provider_test/src/TestFileUsage.php
-
message: "#^Instantiated class Drupal\\\\Tests\\\\system\\\\Functional\\\\FileTransfer\\\\Exception not found\\.$#"
count: 1
......@@ -1460,11 +1380,6 @@ parameters:
count: 1
path: modules/views/tests/modules/views_config_entity_test/src/Entity/ViewsConfigEntityTest.php
-
message: "#^Method Drupal\\\\views_test_data\\\\Plugin\\\\views\\\\filter\\\\FilterTest\\:\\:buildOptionsForm\\(\\) should return array but return statement is missing\\.$#"
count: 1
path: modules/views/tests/modules/views_test_data/src/Plugin/views/filter/FilterTest.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\\(\\); $#"
count: 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment