Skip to content

Commit cf04e16

Browse files
committed
Add PPSpaces\Facade\Repository
1 parent b962868 commit cf04e16

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

src/Facade/Repository.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace PPSpaces\Facade;
4+
5+
use Illuminate\Support\Facades\Facade;
6+
7+
class Repository extends Facade {
8+
9+
/**
10+
* Get the registered name of the component.
11+
*
12+
* @return string
13+
*/
14+
protected static function getFacadeAccessor() {
15+
return 'PPSpaces/Repositories/Repository';
16+
}
17+
}

0 commit comments

Comments
 (0)