File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -282,44 +282,6 @@ public function settingsSeeder()
282282 $ seeder ->run ();
283283 }
284284
285- /**
286- * Get list of all files in the views folder.
287- *
288- * @return mixed
289- */
290- public function viewsFilesList ($ dir_path )
291- {
292- $ dir_files = File::files ($ dir_path );
293- $ files = [];
294- foreach ($ dir_files as $ file ) {
295- $ path = basename ($ file );
296- $ name = strstr (basename ($ file ), '. ' , true );
297- $ files [$ name ] = $ path ;
298- }
299-
300- return $ files ;
301- }
302-
303- /**
304- * Get list of all files in the views folder.
305- *
306- * @return mixed
307- */
308- public function allFilesList ($ dir_path )
309- {
310- $ files = [];
311- if (File::exists ($ dir_path )) {
312- $ dir_files = File::allFiles ($ dir_path );
313- foreach ($ dir_files as $ file ) {
314- $ path = basename ($ file );
315- $ name = strstr (basename ($ file ), '. ' , true );
316- $ files [$ name ] = $ path ;
317- }
318- }
319-
320- return $ files ;
321- }
322-
323285 /**
324286 * Get all Panic Help Desk Package migrations that were not migrated.
325287 *
You can’t perform that action at this time.
0 commit comments