@@ -131,7 +131,7 @@ protected function loadBaseConfiguration()
131
131
// Set the default configuration
132
132
$ this ->options ->merge ([
133
133
'docs_directory ' => 'docs ' ,
134
- 'valid_content_extensions ' => ['md ' , 'markdown ' ]
134
+ 'valid_content_extensions ' => ['md ' , 'markdown ' ],
135
135
]);
136
136
137
137
// Load the global configuration
@@ -228,7 +228,7 @@ public function getParams()
228
228
'local_base ' => $ this ->local_base ,
229
229
'docs_path ' => $ this ->docs_path ,
230
230
'themes_path ' => $ this ->themes_path ,
231
- 'templates ' => 'templates '
231
+ 'templates ' => 'templates ' ,
232
232
];
233
233
$ this ->options ->conservativeMerge ($ default );
234
234
@@ -301,12 +301,12 @@ public function getProcessorClass()
301
301
return null ;
302
302
}
303
303
304
- $ class = " \\Todaymade \\Daux \\Extension \\" . $ processor ;
304
+ $ class = ' \\Todaymade \\Daux \\Extension \\' . $ processor ;
305
305
if (!class_exists ($ class )) {
306
306
throw new \RuntimeException ("Class ' $ class' not found. We cannot use it as a Processor " );
307
307
}
308
308
309
- if (!array_key_exists (" Todaymade \\Daux \\Processor " , class_parents ($ class ))) {
309
+ if (!array_key_exists (' Todaymade \\Daux \\Processor ' , class_parents ($ class ))) {
310
310
throw new \RuntimeException ("Class ' $ class' invalid, should extend ' \\Todaymade \\Daux \\Processor' " );
311
311
}
312
312
0 commit comments