Add missing 'not' in error message in AbstractFormFieldDecorator
authorTim Düsterhus <duesterhus@woltlab.com>
Wed, 25 Aug 2021 08:37:13 +0000 (10:37 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Wed, 25 Aug 2021 08:37:13 +0000 (10:37 +0200)
wcfsetup/install/files/lib/system/form/builder/field/AbstractFormFieldDecorator.class.php

index 50182b6e2b859b2afd9b30696851a3689a637eb8..51bc0a56b382218b006aee6d9b156e59f0a6eea6 100644 (file)
@@ -443,7 +443,7 @@ abstract class AbstractFormFieldDecorator implements IFormField
      */
     public static function create($id)
     {
-        throw new \BadMethodCallException('This method is available on a decorator.');
+        throw new \BadMethodCallException('This method is not available on a decorator.');
     }
 
     /**
@@ -451,7 +451,7 @@ abstract class AbstractFormFieldDecorator implements IFormField
      */
     public static function validateAttribute($name)
     {
-        throw new \BadMethodCallException('This method is available on a decorator.');
+        throw new \BadMethodCallException('This method is not available on a decorator.');
     }
 
     /**
@@ -459,7 +459,7 @@ abstract class AbstractFormFieldDecorator implements IFormField
      */
     public static function validateClass($class)
     {
-        throw new \BadMethodCallException('This method is available on a decorator.');
+        throw new \BadMethodCallException('This method is not available on a decorator.');
     }
 
     /**
@@ -467,7 +467,7 @@ abstract class AbstractFormFieldDecorator implements IFormField
      */
     public static function validateId($id)
     {
-        throw new \BadMethodCallException('This method is available on a decorator.');
+        throw new \BadMethodCallException('This method is not available on a decorator.');
     }
 
     /**