diff options
| author | Yoggzo <yogg@epsina.com> | 2016-03-27 19:40:36 +0200 |
|---|---|---|
| committer | Yoggzo <yogg@epsina.com> | 2016-03-27 19:40:36 +0200 |
| commit | 19d84e2ae4c6710aac2236df4f135409ef519fc8 (patch) | |
| tree | 1a39ae08133c2d6d01bfc93e124d1faf0d8be2a8 /server/core/Automating.php | |
| parent | e9c7477ff0acedf9b49e508e1543395bbcbf7533 (diff) | |
Update commentaries
Diffstat (limited to 'server/core/Automating.php')
| -rw-r--r-- | server/core/Automating.php | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/server/core/Automating.php b/server/core/Automating.php index 2665541..065cf5e 100644 --- a/server/core/Automating.php +++ b/server/core/Automating.php @@ -1,11 +1,11 @@ <?php /** -* File containing the Image Class. +* File containing the Automating Class. * * @version 1.0 Initialisation of this file * @since 1.0 Core application's file * -* @author Yogg 'yogg at epsina . com' +* @author Evan Pisani 'yogg at epsina . com' * * @todo Complete the functions with errors detection and finish the descriptions */ @@ -48,7 +48,13 @@ class automating implements Core{ $this->{$action.""}(); } - + /** + * Create a new image on a new server + * + * @param $error the error triggered + * + * @return Image the new image created + */ private function createImageOnNewServer(){ try{ $image = new Image($this->app); @@ -87,9 +93,8 @@ class automating implements Core{ }catch(Exception $e){ $this->app->getErrorInstance()->OtherException($e); } + $this->app->setOutput("Auto", $res); } - - } ?>
\ No newline at end of file |
