You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewInvalidConfigException('Unable to automatically determine not delete condition, "' . get_class($this) . '::$notDeletedCondition" should be explicitly set.');
262
+
thrownewInvalidConfigException('Unable to automatically determine not delete condition, "' . static::class . '::$notDeletedCondition" should be explicitly set.');
263
263
}
264
264
265
265
$condition[$attribute] = $restoreValue;
@@ -297,12 +297,12 @@ protected function normalizeFilterCondition($condition)
297
297
$alias = array_keys($fromTables)[0];
298
298
299
299
foreach ($conditionas$attribute => $value) {
300
-
if (is_numeric($attribute) || strpos($attribute, '.') !== false) {
300
+
if (is_numeric($attribute) || str_contains($attribute, '.')) {
0 commit comments