server/src/app/Console/Kernel.php
changeset 2 00e2916104fe
parent 1 01a844d292ac
child 24 de47e8f66e8b
--- a/server/src/app/Console/Kernel.php	Mon Jun 15 19:30:32 2015 +0200
+++ b/server/src/app/Console/Kernel.php	Tue Jun 23 17:01:39 2015 +0200
@@ -1,30 +1,30 @@
-<?php namespace App\Console;
+<?php
+
+namespace CorpusParole\Console;
 
 use Illuminate\Console\Scheduling\Schedule;
 use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
 
-class Kernel extends ConsoleKernel {
-
-	/**
-	 * The Artisan commands provided by your application.
-	 *
-	 * @var array
-	 */
-	protected $commands = [
-		'App\Console\Commands\Inspire',
-		'App\Console\Commands\ImportCocoonRDF',
-	];
+class Kernel extends ConsoleKernel
+{
+    /**
+     * The Artisan commands provided by your application.
+     *
+     * @var array
+     */
+    protected $commands = [
+        'CorpusParole\Console\Commands\Inspire',
+        'CorpusParole\Console\Commands\ImportCocoonRDF',
+    ];
 
-	/**
-	 * Define the application's command schedule.
-	 *
-	 * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
-	 * @return void
-	 */
-	protected function schedule(Schedule $schedule)
-	{
-		$schedule->command('inspire')
-				 ->hourly();
-	}
-
+    /**
+     * Define the application's command schedule.
+     *
+     * @param \Illuminate\Console\Scheduling\Schedule $schedule
+     */
+    protected function schedule(Schedule $schedule)
+    {
+        $schedule->command('inspire')
+                 ->hourly();
+    }
 }