Skip to content

Commit 1cb5e6f

Browse files
committed
Update exception thrown for invalid config
1 parent b7fdd85 commit 1cb5e6f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/UrlService.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace Benrowe\Laravel\Url;
1111

1212
use Illuminate\Http\Request;
13-
use Exception;
13+
use InvalidArgumentException as Exception;
1414

1515
/**
1616
* URI Service that generates a public endpoint from the requested filesystem

tests/UrlTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function testUrl()
7777
$this->assertSame(null, $this->url->url('images/img.jpg', 'disabled', true));
7878

7979
// notpublic
80-
$this->setExpectedException('Exception');
80+
$this->setExpectedException('InvalidArgumentException');
8181
$this->url->url('doesntexist', 'notpublic');
8282
}
8383
}

0 commit comments

Comments
 (0)