We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fae3ad6 commit d32c7beCopy full SHA for d32c7be
system/View/Cells/Cell.php
@@ -75,7 +75,7 @@ final protected function view(?string $view, array $data = []): string
75
if (empty($view)) {
76
// According to the docs, the name of the view file should be the
77
// snake_cased version of the cell's class name, but for backward
78
- // compactibility, the name also accepts '_cell' being omitted.
+ // compatibility, the name also accepts '_cell' being omitted.
79
$ref = new ReflectionClass($this);
80
$view = decamelize($ref->getShortName());
81
$viewPath = dirname($ref->getFileName()) . DIRECTORY_SEPARATOR . $view . '.php';
0 commit comments