D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
api2
/
vendor
/
mockery
/
mockery
/
library
/
Mockery
/
Exception
/
Filename :
BadMethodCallException.php
back
Copy
<?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; } }