File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 29
29
"autoload" : {
30
30
"psr-4" : {
31
31
"BeyondCode\\ DumpServer\\ " : " src"
32
- }
32
+ },
33
+ "files" : [
34
+ " helpers.php"
35
+ ]
33
36
},
34
37
"autoload-dev" : {
35
38
"psr-4" : {
Original file line number Diff line number Diff line change
1
+ <?php
2
+ if (!function_exists ('config_path ' )) {
3
+ /**
4
+ * Get the configuration path.
5
+ *
6
+ * This is a polyfill for the missing shorthand function in lumen.
7
+ *
8
+ * @param string $path
9
+ * @return string
10
+ */
11
+ function config_path ($ path = '' )
12
+ {
13
+ return app ()->basePath ('config ' ) . ($ path ? DIRECTORY_SEPARATOR . $ path : $ path );
14
+ }
15
+ }
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class DumpServerCommand extends Command
27
27
*
28
28
* @var string
29
29
*/
30
- protected $ description = 'Start the dump server to collect dump information. ' ;
30
+ protected $ description = 'Start the dump server to collect dump information ' ;
31
31
32
32
/** @var DumpServer */
33
33
private $ server ;
You can’t perform that action at this time.
0 commit comments