Sfoglia il codice sorgente

check for contraints before executing it

develop
Robin Thoni 8 anni fa
parent
commit
e6478d3a6d
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  1. 4
    0
      src/Utils/Dbo/LuDbo.php

+ 4
- 0
src/Utils/Dbo/LuDbo.php Vedi File

@@ -152,9 +152,13 @@ abstract class LuDbo implements \JsonSerializable {
152 152
 
153 153
     /**
154 154
      * @param $constraints LuParameterConstraintDbo[]
155
+     * @throws LuDboConstraintException
155 156
      */
156 157
     public function checkConstraints($constraints) {
157 158
         foreach ($constraints as $constraint) {
159
+            if (!is_callable([$this, $constraint->getMethod()])) {
160
+                throw new LuDboConstraintException("Constraint '" . $constraint->getMethod() . "' could not be found");
161
+            }
158 162
             call_user_func_array([$this, $constraint->getMethod()], $constraint->getArguments());
159 163
         }
160 164
     } 

Loading…
Annulla
Salva