Skip to content
Snippets Groups Projects

Issue #2707689: NodeForm::actions() checks for delete access on new entities

8 files
+ 10
10
Compare changes
  • Side-by-side
  • Inline
Files
8
  • 97ffc69f
    Issue #3324838 by Spokje: Fix PHPStan L2 error "PHPDoc tag @throws with type... · 97ffc69f
    Jess authored
    Issue #3324838 by Spokje: Fix PHPStan L2 error "PHPDoc tag @throws with type Foo is not subtype of Throwable"
@@ -215,7 +215,7 @@ protected static function schemaDefinition() {
/**
* Implements Drupal\Core\Config\StorageInterface::delete().
*
* @throws PDOException
* @throws \PDOException
*
* @todo Ignore replica targets for data manipulation operations.
*/
@@ -232,7 +232,7 @@ public function delete($name) {
/**
* Implements Drupal\Core\Config\StorageInterface::rename().
*
* @throws PDOException
* @throws \PDOException
*/
public function rename($name, $new_name) {
// @todo Remove the 'return' option in Drupal 11.
@@ -255,7 +255,7 @@ public function encode($data) {
/**
* Implements Drupal\Core\Config\StorageInterface::decode().
*
* @throws ErrorException
* @throws \ErrorException
* The unserialize() call will trigger E_NOTICE if the string cannot
* be unserialized.
*/
Loading