Remove senseless proxy functions
This commit is contained in:
parent
3a918ad200
commit
0947406343
|
|
@ -53,17 +53,6 @@ class CmsObject extends HalcyonModel implements CmsObjectContract
|
|||
*/
|
||||
protected $themeCache;
|
||||
|
||||
/**
|
||||
* Create a new CMS object instance.
|
||||
*
|
||||
* @param array $attributes
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(array $attributes = [])
|
||||
{
|
||||
parent::__construct($attributes);
|
||||
}
|
||||
|
||||
/**
|
||||
* The "booting" method of the model.
|
||||
* @return void
|
||||
|
|
|
|||
|
|
@ -26,14 +26,6 @@ class OctoberDown extends Command
|
|||
*/
|
||||
protected $description = 'Destroys all database tables for October and all plugins.';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -46,14 +46,6 @@ class OctoberEnv extends Command
|
|||
*/
|
||||
protected $connection;
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -27,14 +27,6 @@ class OctoberFresh extends Command
|
|||
*/
|
||||
protected $description = 'Removes the demo theme and plugin.';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -73,14 +73,6 @@ class OctoberMirror extends Command
|
|||
|
||||
protected $destinationPath;
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -23,14 +23,6 @@ class OctoberUp extends Command
|
|||
*/
|
||||
protected $description = 'Builds database tables for October and all plugins.';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -29,14 +29,6 @@ class OctoberUpdate extends Command
|
|||
*/
|
||||
protected $description = 'Updates October CMS and all plugins, database and files.';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -46,14 +46,6 @@ class OctoberUtil extends Command
|
|||
*/
|
||||
protected $description = 'Utility commands for October';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -28,15 +28,6 @@ class PluginInstall extends Command
|
|||
*/
|
||||
protected $description = 'Install a plugin from the October marketplace.';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
* @return void
|
||||
|
|
|
|||
|
|
@ -29,15 +29,6 @@ class PluginRefresh extends Command
|
|||
*/
|
||||
protected $description = 'Removes and re-adds an existing plugin.';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
* @return void
|
||||
|
|
|
|||
|
|
@ -33,15 +33,6 @@ class PluginRemove extends Command
|
|||
*/
|
||||
protected $description = 'Removes an existing plugin.';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
* @return void
|
||||
|
|
|
|||
|
|
@ -30,15 +30,6 @@ class ThemeInstall extends Command
|
|||
*/
|
||||
protected $description = 'Install a theme from the October marketplace.';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
* @return void
|
||||
|
|
|
|||
|
|
@ -26,14 +26,6 @@ class ThemeList extends Command
|
|||
*/
|
||||
protected $description = 'List available themes.';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -32,15 +32,6 @@ class ThemeRemove extends Command
|
|||
*/
|
||||
protected $description = 'Delete an existing theme.';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
* @return void
|
||||
|
|
|
|||
|
|
@ -29,15 +29,6 @@ class ThemeUse extends Command
|
|||
*/
|
||||
protected $description = 'Switch the active theme.';
|
||||
|
||||
/**
|
||||
* Create a new command instance.
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
* @return void
|
||||
|
|
|
|||
Loading…
Reference in New Issue