Skip to content

Commit cb0e56d

Browse files
committed
Removed exception parameter.
Signed-off-by: Joshua Parker <joshua@joshuaparker.dev>
1 parent 144597a commit cb0e56d

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

Helpers/path.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
*
1919
* @param string|null $path
2020
* @return string
21-
* @throws TypeException
2221
*/
2322
function base_path(?string $path = null): string
2423
{
@@ -30,7 +29,6 @@ function base_path(?string $path = null): string
3029
*
3130
* @param string|null $path
3231
* @return string
33-
* @throws TypeException
3432
*/
3533
function src_path(?string $path = null): string
3634
{
@@ -42,7 +40,6 @@ function src_path(?string $path = null): string
4240
*
4341
* @param string|null $path
4442
* @return string
45-
* @throws TypeException
4643
*/
4744
function bootstrap_path(?string $path = null): string
4845
{
@@ -54,7 +51,6 @@ function bootstrap_path(?string $path = null): string
5451
*
5552
* @param string|null $path
5653
* @return string
57-
* @throws TypeException
5854
*/
5955
function config_path(?string $path = null): string
6056
{
@@ -66,7 +62,6 @@ function config_path(?string $path = null): string
6662
*
6763
* @param string|null $path
6864
* @return string
69-
* @throws TypeException
7065
*/
7166
function database_path(?string $path = null): string
7267
{
@@ -78,7 +73,6 @@ function database_path(?string $path = null): string
7873
*
7974
* @param string|null $path
8075
* @return string
81-
* @throws TypeException
8276
*/
8377
function locale_path(?string $path = null): string
8478
{
@@ -90,7 +84,6 @@ function locale_path(?string $path = null): string
9084
*
9185
* @param string|null $path
9286
* @return string
93-
* @throws TypeException
9487
*/
9588
function public_path(?string $path = null): string
9689
{
@@ -102,7 +95,6 @@ function public_path(?string $path = null): string
10295
*
10396
* @param string|null $path
10497
* @return string
105-
* @throws TypeException
10698
*/
10799
function storage_path(?string $path = null): string
108100
{
@@ -114,7 +106,6 @@ function storage_path(?string $path = null): string
114106
*
115107
* @param string|null $path
116108
* @return string
117-
* @throws TypeException
118109
*/
119110
function resource_path(?string $path = null): string
120111
{
@@ -126,7 +117,6 @@ function resource_path(?string $path = null): string
126117
*
127118
* @param string|null $path
128119
* @return string
129-
* @throws TypeException
130120
*/
131121
function view_path(?string $path = null): string
132122
{
@@ -138,7 +128,6 @@ function view_path(?string $path = null): string
138128
*
139129
* @param string|null $path
140130
* @return string
141-
* @throws TypeException
142131
*/
143132
function vendor_path(?string $path = null): string
144133
{

0 commit comments

Comments
 (0)