File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 1
1
<?php namespace Winter \Storm \Support ;
2
2
3
3
use Illuminate \Support \ServiceProvider as ServiceProviderBase ;
4
+ use Winter \Storm \Foundation \Application ;
4
5
use Winter \Storm \Foundation \Extension \WinterExtension ;
5
6
use Winter \Storm \Packager \Composer ;
6
7
use Winter \Storm \Support \ClassLoader ;
@@ -17,6 +18,10 @@ abstract class ModuleServiceProvider extends ServiceProviderBase implements Wint
17
18
*/
18
19
protected $ app ;
19
20
21
+ protected string $ path ;
22
+
23
+ protected string $ identifier ;
24
+
20
25
/**
21
26
* Bootstrap the application events.
22
27
* @return void
@@ -107,6 +112,16 @@ public function getVersion(): string
107
112
return $ this ->composerPackage ['versions ' ][0 ] ?? 'dev-unknown ' ;
108
113
}
109
114
115
+ public function getPath (): string
116
+ {
117
+ return $ this ->path ?? $ this ->path = dirname ((new \ReflectionClass (get_called_class ()))->getFileName ());
118
+ }
119
+
120
+ public function getIdentifier (): string
121
+ {
122
+ return $ this ->identifier ?? $ this ->identifier = (new \ReflectionClass (get_called_class ()))->getNamespaceName ();
123
+ }
124
+
110
125
public function __toString (): string
111
126
{
112
127
return $ this ->getIdentifier ();
You can’t perform that action at this time.
0 commit comments