Merge "Update searchdisabled message with docs and better link target"
[mediawiki.git] / tests / phpunit / data / exception / TestThrowerDummy.php
blobdf1dc415923ba2637ea24c0f4db7ba6f3fe7c280
1 <?php
3 class TestThrowerDummy {
4 public function main() {
5 $this->doFoo();
8 private function doFoo() {
9 $this->getBar();
12 private function getBar() {
13 $this->getQuux();
16 private function getQuux() {
17 throw new Exception( 'Quux failed' );
20 public static function getFile(): string {
21 return __FILE__;