Skip to content
Snippets Groups Projects
Verified Commit f385639b authored by Jess's avatar Jess
Browse files

Issue #3324838 by Spokje: Fix PHPStan L2 error "PHPDoc tag @throws with type...

Issue #3324838 by Spokje: Fix PHPStan L2 error "PHPDoc tag @throws with type Foo is not subtype of Throwable"

(cherry picked from commit 97ffc69f)
parent f90f7ff6
No related branches found
No related tags found
21 merge requests!8394[warning] array_flip(): Can only flip STRING and INTEGER values, when saving a non-revisionable custom content entity,!7780issue 3443822: fix for 'No route found for the specified format html. Supported formats: json, xml.',!5013Issue #3071143: Table Render Array Example Is Incorrect,!4848Issue #1566662: Update module should send notifications on Thursdays,!4792Issue #2230689: Remove redundant "Italic" style,!4220Issue #3368223: Link field > Access to internal links is not checked on display.,!3884Issue #3356842,!3870Issue #3087868,!3812Draft: Issue #3339373 by alexpott, andypost, mondrake:...,!3686Issue #3219967 against 9.5.x,!3683Issue #2939397: Clearing AliasManager cache with root path raises warning,!3543Issue #3344259: Allow ajax dialog to have focus configurable,!3356Issue #3209129: Scrolling problems when adding a block via layout builder,!2205Quote all names in the regions section.,!2050Issue #3272969: Remove UnqiueField constraint.,!1956Issue #3268872: hook_views_invalidate_cache not called when a view is deleted,!1893Issue #3217260: Add a way to make media captions not editable in CKEditor,!1459Issue #3087632: menu_name max length is too long,!878Issue #3221534: throw an exception when IDs passed to loadMultiple() are badly formed,!866Issue #2845319: The highlighting of the 'Home' menu-link does not respect query strings and fragment identifiers,!204Issue #3040556: It is not possible to react to an entity being duplicated
...@@ -215,7 +215,7 @@ protected static function schemaDefinition() { ...@@ -215,7 +215,7 @@ protected static function schemaDefinition() {
/** /**
* Implements Drupal\Core\Config\StorageInterface::delete(). * Implements Drupal\Core\Config\StorageInterface::delete().
* *
* @throws PDOException * @throws \PDOException
* *
* @todo Ignore replica targets for data manipulation operations. * @todo Ignore replica targets for data manipulation operations.
*/ */
...@@ -232,7 +232,7 @@ public function delete($name) { ...@@ -232,7 +232,7 @@ public function delete($name) {
/** /**
* Implements Drupal\Core\Config\StorageInterface::rename(). * Implements Drupal\Core\Config\StorageInterface::rename().
* *
* @throws PDOException * @throws \PDOException
*/ */
public function rename($name, $new_name) { public function rename($name, $new_name) {
// @todo Remove the 'return' option in Drupal 11. // @todo Remove the 'return' option in Drupal 11.
...@@ -255,7 +255,7 @@ public function encode($data) { ...@@ -255,7 +255,7 @@ public function encode($data) {
/** /**
* Implements Drupal\Core\Config\StorageInterface::decode(). * Implements Drupal\Core\Config\StorageInterface::decode().
* *
* @throws ErrorException * @throws \ErrorException
* The unserialize() call will trigger E_NOTICE if the string cannot * The unserialize() call will trigger E_NOTICE if the string cannot
* be unserialized. * be unserialized.
*/ */
......
...@@ -146,7 +146,7 @@ public function themeExists($theme); ...@@ -146,7 +146,7 @@ public function themeExists($theme);
* @return \Drupal\Core\Extension\Extension * @return \Drupal\Core\Extension\Extension
* An extension object. * An extension object.
* *
* @throws \Drupal\Core\Extension\Extension\UnknownExtensionException * @throws \Drupal\Core\Extension\Exception\UnknownExtensionException
* Thrown when the requested theme does not exist. * Thrown when the requested theme does not exist.
*/ */
public function getTheme($name); public function getTheme($name);
......
...@@ -22,7 +22,7 @@ interface FilterInterface { ...@@ -22,7 +22,7 @@ interface FilterInterface {
* @return \Symfony\Component\Routing\RouteCollection * @return \Symfony\Component\Routing\RouteCollection
* A non-empty RouteCollection of matched routes * A non-empty RouteCollection of matched routes
* *
* @throws ResourceNotFoundException * @throws \Symfony\Component\Routing\Exception\ResourceNotFoundException
* If none of the routes in $collection matches $request. This is a * If none of the routes in $collection matches $request. This is a
* performance optimization to not continue the match process when a match * performance optimization to not continue the match process when a match
* will no longer be possible. * will no longer be possible.
......
...@@ -29,7 +29,7 @@ interface TranslatorInterface { ...@@ -29,7 +29,7 @@ interface TranslatorInterface {
* @return string * @return string
* The translated string. * The translated string.
* *
* @throws InvalidArgumentException * @throws \InvalidArgumentException
* If the locale contains invalid characters. * If the locale contains invalid characters.
*/ */
public function trans($id, array $parameters = [], $domain = NULL, $locale = NULL); public function trans($id, array $parameters = [], $domain = NULL, $locale = NULL);
......
...@@ -166,7 +166,7 @@ public function postSave(EntityStorageInterface $storage, $update = TRUE) { ...@@ -166,7 +166,7 @@ public function postSave(EntityStorageInterface $storage, $update = TRUE) {
/** /**
* {@inheritdoc} * {@inheritdoc}
* *
* @throws \DeleteDefaultLanguageException * @throws \Drupal\language\Exception\DeleteDefaultLanguageException
* Exception thrown if we're trying to delete the default language entity. * Exception thrown if we're trying to delete the default language entity.
* This is not allowed as a site must have a default language. * This is not allowed as a site must have a default language.
*/ */
......
...@@ -91,7 +91,7 @@ public function getHeader() { ...@@ -91,7 +91,7 @@ public function getHeader() {
/** /**
* Implements Drupal\Component\Gettext\PoMetadataInterface::setHeader(). * Implements Drupal\Component\Gettext\PoMetadataInterface::setHeader().
* *
* @throws Exception * @throws \Exception
* Always, because you cannot set the PO header of a reader. * Always, because you cannot set the PO header of a reader.
*/ */
public function setHeader(PoHeader $header) { public function setHeader(PoHeader $header) {
......
...@@ -154,7 +154,7 @@ public function getHeader() { ...@@ -154,7 +154,7 @@ public function getHeader() {
* @param \Drupal\Component\Gettext\PoHeader $header * @param \Drupal\Component\Gettext\PoHeader $header
* Header metadata. * Header metadata.
* *
* @throws Exception * @throws \Exception
*/ */
public function setHeader(PoHeader $header) { public function setHeader(PoHeader $header) {
$this->header = $header; $this->header = $header;
......
...@@ -332,7 +332,7 @@ public function setMessage(MigrateMessageInterface $message) { ...@@ -332,7 +332,7 @@ public function setMessage(MigrateMessageInterface $message) {
/** /**
* Create the map and message tables if they don't already exist. * Create the map and message tables if they don't already exist.
* *
* @throws \Drupal\Core\Database\DatabaseException * @throws \Drupal\Core\Database\DatabaseExceptionWrapper
*/ */
protected function ensureTables() { protected function ensureTables() {
if (!$this->getDatabase()->schema()->tableExists($this->mapTableName)) { if (!$this->getDatabase()->schema()->tableExists($this->mapTableName)) {
......
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