Skip to content

Commit

Permalink
Remove extra argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Jun 7, 2018
1 parent 4400415 commit 313ce9c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/View/Cell.php
Expand Up @@ -299,8 +299,7 @@ public function __get($name)
if (in_array($name, $protected, true)) {
deprecationWarning(sprintf(
'Cell::$%s is now protected and shouldn\'t be accessed from outside a child class.',
$name,
$method
$name
));
}

Expand Down Expand Up @@ -343,8 +342,7 @@ public function __set($name, $value)
if (in_array($name, $protected, true)) {
deprecationWarning(sprintf(
'Cell::$%s is now protected and shouldn\'t be accessed from outside a child class.',
$name,
$method
$name
));
}

Expand Down

0 comments on commit 313ce9c

Please sign in to comment.