Skip to content

Commit

Permalink
change some methods to protected
Browse files Browse the repository at this point in the history
  • Loading branch information
ursuleacv committed May 17, 2018
1 parent 9194937 commit 5422c93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Wallaby/Base/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ public function displayException($exception)
}
}

private function getExceptionTraceAsString($exception)
protected function getExceptionTraceAsString($exception)
{
$rtn = "";
$count = 0;
Expand Down Expand Up @@ -418,7 +418,7 @@ private function getExceptionTraceAsString($exception)
* leave as NULL when calling this function
* @return array of strings, one entry per trace line
*/
private function jTraceExeption($e, $seen = null)
protected function jTraceExeption($e, $seen = null)
{
$starter = $seen ? 'Caused by: ' : '';
$result = array();
Expand Down

0 comments on commit 5422c93

Please sign in to comment.