Skip to content

Commit f72b34b

Browse files
authored
Merge pull request #12 from hnhdigital-os/analysis-320eML
Apply fixes from StyleCI
2 parents cbf8e85 + 279fad3 commit f72b34b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Concerns/HasAttributes.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,12 +347,12 @@ private function parseCastParamaters($paramaters)
347347
$method = substr($value, 1, -2);
348348
$value = is_callable([$this, $method]) ? $this->{$method}() : null;
349349

350-
// Local attribute. ($some_attribute)
350+
// Local attribute. ($some_attribute)
351351
} elseif (substr($value, 0, 1) === '$') {
352352
$key = substr($value, 1);
353353
$value = $this->{$key};
354354

355-
// Callable function (eg helper). (some_function())
355+
// Callable function (eg helper). (some_function())
356356
} elseif (stripos($value, '()') !== false) {
357357
$method = substr($value, 0, -2);
358358
$value = is_callable($method) ? $method() : null;

0 commit comments

Comments
 (0)