Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelbistroemcasa.meumercado.app
/
vendor
/
mockery
/
mockery
/
library
/
Mockery
/
Exception
/
Editing: BadMethodCallException.php
<?php namespace Mockery\Exception; class BadMethodCallException extends \BadMethodCallException { private $dismissed = false; public function dismiss() { $this->dismissed = true; // we sometimes stack them if ($this->getPrevious() && $this->getPrevious() instanceof BadMethodCallException) { $this->getPrevious()->dismiss(); } } public function dismissed() { return $this->dismissed; } }
Save
Cancel