관리-도구
편집 파일: 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; } }