GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( fd5ec3...0fd339 )
by Pedro
02:41
created
build/phar-generate.php 1 patch
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -1,22 +1,22 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if ( ! ini_get ( 'short_open_tag' ) )
3
+if ( ! ini_get('short_open_tag'))
4 4
 {
5
-    die( "please enable short_open_tag directive in php.ini\n" );
5
+    die("please enable short_open_tag directive in php.ini\n");
6 6
 }
7 7
 
8
-if ( ! ini_get ( 'register_argc_argv' ) )
8
+if ( ! ini_get('register_argc_argv'))
9 9
 {
10
-    die( "please enable register_argc_argv directive in php.ini\n" );
10
+    die("please enable register_argc_argv directive in php.ini\n");
11 11
 }
12 12
 
13 13
 if (function_exists('ini_set')) {
14 14
     @ini_set('display_errors', 1);
15 15
 
16
-    $memoryInBytes = function ($value) {
16
+    $memoryInBytes = function($value) {
17 17
         $unit = strtolower(substr($value, -1, 1));
18 18
         $value = (int) $value;
19
-        switch($unit) {
19
+        switch ($unit) {
20 20
             case 'g':
21 21
                 $value *= 1024;
22 22
             // no break (cumulative multiplier)
@@ -38,14 +38,14 @@  discard block
 block discarded – undo
38 38
     unset($memoryInBytes, $memoryLimit);
39 39
 }
40 40
 
41
-\Phar::interceptFileFuncs ();
41
+\Phar::interceptFileFuncs();
42 42
 
43
-set_include_path (
44
-    implode (
45
-        PATH_SEPARATOR ,
46
-        array (
47
-            realpath ( __DIR__ ) ,
48
-            get_include_path () ,
43
+set_include_path(
44
+    implode(
45
+        PATH_SEPARATOR,
46
+        array(
47
+            realpath(__DIR__),
48
+            get_include_path(),
49 49
         )
50 50
     )
51 51
 );
@@ -56,43 +56,43 @@  discard block
 block discarded – undo
56 56
 
57 57
 try
58 58
 {
59
-    $_path = realpath (
60
-        str_replace (
59
+    $_path = realpath(
60
+        str_replace(
61 61
             'phar://'
62
-            , '' , __DIR__
62
+            , '', __DIR__
63 63
         )
64 64
     );
65 65
 
66
-    $arrValid = array (
67
-        'version' ,
68
-        'help' ,
69
-        'status' ,
70
-        'init' ,
71
-        'config-env:' ,
72
-        'config-ini:' ,
73
-        'database:' ,
74
-        'schema:' ,
75
-        'driver:' ,
76
-        'framework:' ,
66
+    $arrValid = array(
67
+        'version',
68
+        'help',
69
+        'status',
70
+        'init',
71
+        'config-env:',
72
+        'config-ini:',
73
+        'database:',
74
+        'schema:',
75
+        'driver:',
76
+        'framework:',
77 77
         'path:'
78 78
     );
79 79
 
80
-    $argv = getopt ( null, $arrValid );
80
+    $argv = getopt(null, $arrValid);
81 81
 
82
-    if ( array_key_exists ( 'init', $argv ) )
82
+    if (array_key_exists('init', $argv))
83 83
     {
84
-        $maker = new \Classes\MakerConfigFile( $argv, $_path );
84
+        $maker = new \Classes\MakerConfigFile($argv, $_path);
85 85
     }
86 86
     else
87 87
     {
88
-        $maker = new \Classes\MakerFile( new \Classes\Config( $argv, $_path ) );
88
+        $maker = new \Classes\MakerFile(new \Classes\Config($argv, $_path));
89 89
     }
90 90
 
91
-    $maker->run ();
91
+    $maker->run();
92 92
 
93
-} catch ( \Exception $e )
93
+} catch (\Exception $e)
94 94
 {
95
-    die( $e->getMessage () );
95
+    die($e->getMessage());
96 96
 }
97 97
 
98 98
 __halt_compiler();
99 99
\ No newline at end of file
Please login to merge, or discard this patch.
build/Classes/MakerConfigFile.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -24,21 +24,21 @@  discard block
 block discarded – undo
24 24
 
25 25
     private $msg = "\033[0mPlease enter the value for %index% \033[1;33m[%config%]:\033[0m ";
26 26
 
27
-    private $configs = array (
28
-        'config-env'  => 'config' ,
29
-        'framework'   => 'none' ,
30
-        'driver'      => 'pgsql' ,
31
-        'environment' => 'dev' ,
32
-        'host'        => 'localhost' ,
33
-        'database'    => null ,
34
-        'schema'      => null ,
35
-        'username'    => null ,
27
+    private $configs = array(
28
+        'config-env'  => 'config',
29
+        'framework'   => 'none',
30
+        'driver'      => 'pgsql',
31
+        'environment' => 'dev',
32
+        'host'        => 'localhost',
33
+        'database'    => null,
34
+        'schema'      => null,
35
+        'username'    => null,
36 36
         'password'    => null
37 37
     );
38 38
 
39
-    public function __construct ( $argv , $basePath )
39
+    public function __construct($argv, $basePath)
40 40
     {
41
-        $this->argv = $this->parseConfig ( $basePath , $argv );
41
+        $this->argv = $this->parseConfig($basePath, $argv);
42 42
     }
43 43
 
44 44
     /**
@@ -50,32 +50,32 @@  discard block
 block discarded – undo
50 50
      * @return array
51 51
      * @throws \Exception
52 52
      */
53
-    private function parseConfig ( $basePath , $argv )
53
+    private function parseConfig($basePath, $argv)
54 54
     {
55
-        $this->baseLocation = dirname ( $basePath );
55
+        $this->baseLocation = dirname($basePath);
56 56
 
57
-        $arrayIO = array_diff_key ( $this->configs , $argv );
58
-        foreach ( $arrayIO as $index => $config )
57
+        $arrayIO = array_diff_key($this->configs, $argv);
58
+        foreach ($arrayIO as $index => $config)
59 59
         {
60
-            $attribs = array ( "%index%" => $index , "%config%" => $config );
61
-            echo strtr ( $this->msg , $attribs );
62
-            $line = trim ( fgets ( STDIN ) );
63
-            if ( ! empty( $line ) )
60
+            $attribs = array("%index%" => $index, "%config%" => $config);
61
+            echo strtr($this->msg, $attribs);
62
+            $line = trim(fgets(STDIN));
63
+            if ( ! empty($line))
64 64
             {
65
-                $this->configs[ $index ] = strtolower ( $line );
65
+                $this->configs[$index] = strtolower($line);
66 66
             }
67 67
         }
68
-        $this->configs ['version']     = Config::$version;
69
-        return $argv + array_filter ( $this->configs );
68
+        $this->configs ['version'] = Config::$version;
69
+        return $argv + array_filter($this->configs);
70 70
     }
71 71
 
72
-    public function run ()
72
+    public function run()
73 73
     {
74 74
         $path = $this->baseLocation . DIRECTORY_SEPARATOR . "configs";
75
-        self::makeDir ( $path );
76
-        self::makeSourcer (
77
-            $path . DIRECTORY_SEPARATOR . $this->argv[ 'config-env' ] . '.ini' ,
78
-            $this->getParsedTplContents ( $this->template , $this->argv )
75
+        self::makeDir($path);
76
+        self::makeSourcer(
77
+            $path . DIRECTORY_SEPARATOR . $this->argv['config-env'] . '.ini',
78
+            $this->getParsedTplContents($this->template, $this->argv)
79 79
         );
80 80
         echo "\n\033[1;32mSuccessfully process finished!\n\033[0m";
81 81
     }
Please login to merge, or discard this patch.
build/Classes/AdaptersDriver/Mssql.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      *
79 79
      * @return array[]
80 80
      */
81
-    public function getListColumns ()
81
+    public function getListColumns()
82 82
     {
83 83
         // TODO: Implement getListColumns() method.
84 84
     }
@@ -88,17 +88,17 @@  discard block
 block discarded – undo
88 88
      *
89 89
      * @return int
90 90
      */
91
-    public function getTotalTables ()
91
+    public function getTotalTables()
92 92
     {
93 93
         // TODO: Implement totalTables() method.
94 94
     }
95 95
 
96
-    public function getSequence ( $table , $column )
96
+    public function getSequence($table, $column)
97 97
     {
98 98
         // TODO: Implement getSequence() method.
99 99
     }
100 100
 
101
-    public function getListConstrant ()
101
+    public function getListConstrant()
102 102
     {
103 103
         // TODO: Implement getListConstrant() method.
104 104
     }
Please login to merge, or discard this patch.
build/Classes/AdapterMakerFile/ZendFrameworkOne/Model.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     protected $parentFileTpl = "";
18 18
     protected $fileTpl       = "model.php";
19 19
 
20
-    public function parseRelation ( \Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable )
20
+    public function parseRelation(\Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable)
21 21
     {
22 22
        return array();
23 23
     }
Please login to merge, or discard this patch.
build/Classes/AdapterMakerFile/ZendFrameworkOne/DbTable.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -28,60 +28,60 @@
 block discarded – undo
28 28
      *
29 29
      * @return string[]
30 30
      */
31
-    public function parseRelation ( \Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable )
31
+    public function parseRelation(\Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable)
32 32
     {
33 33
         $referenceMap = '';
34
-        $references = array ();
34
+        $references = array();
35 35
         $dependentTables = '';
36
-        $dependents = array ();
37
-        foreach ( $dbTable->getForeingkeys () as $fk )
36
+        $dependents = array();
37
+        foreach ($dbTable->getForeingkeys() as $fk)
38 38
         {
39
-            $constrant = $fk->getFks ();
40
-            $references[] = sprintf (
39
+            $constrant = $fk->getFks();
40
+            $references[] = sprintf(
41 41
                 "
42 42
        '%s' => array (
43 43
             'columns'       => '%s' ,
44 44
             'refTableClass' => '%s',
45 45
             'refColumns'    =>'%s'
46 46
        )",
47
-                AbstractMaker::getClassName ( $constrant->getNameConstrant () ),
48
-                $fk->getName (),
49
-                $makerFile->getConfig ()->createClassNamespace ( $constrant )
47
+                AbstractMaker::getClassName($constrant->getNameConstrant()),
48
+                $fk->getName(),
49
+                $makerFile->getConfig()->createClassNamespace($constrant)
50 50
                 . ZendFrameworkOne::SEPARETOR
51 51
                 . 'DbTable'
52 52
                 . ZendFrameworkOne::SEPARETOR
53
-                . AbstractMaker::getClassName ( $constrant->getTable () ),
54
-                $constrant->getColumn ()
53
+                . AbstractMaker::getClassName($constrant->getTable()),
54
+                $constrant->getColumn()
55 55
 
56 56
             );
57 57
         }
58 58
 
59
-        if ( sizeof ( $references ) > 0 )
59
+        if (sizeof($references) > 0)
60 60
         {
61 61
             $referenceMap = "protected \$_referenceMap = array(" .
62
-                join ( ',', $references ) . "\n    );";
62
+                join(',', $references) . "\n    );";
63 63
         }
64 64
 
65
-        foreach ( $dbTable->getDependences () as $objColumn )
65
+        foreach ($dbTable->getDependences() as $objColumn)
66 66
         {
67
-            foreach ( $objColumn->getDependences () as $dependence )
67
+            foreach ($objColumn->getDependences() as $dependence)
68 68
             {
69
-                $dependents[] = $makerFile->getConfig ()->createClassNamespace ( $dependence )
69
+                $dependents[] = $makerFile->getConfig()->createClassNamespace($dependence)
70 70
                     . ZendFrameworkOne::SEPARETOR
71 71
                     . 'DbTable'
72 72
                     . ZendFrameworkOne::SEPARETOR
73
-                    . AbstractMaker::getClassName ( $dependence->getTable () );
73
+                    . AbstractMaker::getClassName($dependence->getTable());
74 74
             }
75 75
         }
76 76
 
77
-        if ( sizeof ( $dependents ) > 0 )
77
+        if (sizeof($dependents) > 0)
78 78
         {
79 79
             $dependentTables = "protected \$_dependentTables = array(\n        '" .
80
-                join ( "',\n        '", $dependents ) . "'\n    );";
80
+                join("',\n        '", $dependents) . "'\n    );";
81 81
         }
82 82
 
83 83
 
84
-        return array (
84
+        return array(
85 85
             'referenceMap'    => $referenceMap,
86 86
             'dependentTables' => $dependentTables
87 87
         );
Please login to merge, or discard this patch.
build/Classes/AdapterMakerFile/AbstractAdapter.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -11,29 +11,29 @@  discard block
 block discarded – undo
11 11
     /**
12 12
      * @type AbstractAdapter[]
13 13
      */
14
-    private static $_instance = array ();
14
+    private static $_instance = array();
15 15
 
16 16
     /**
17 17
      *
18 18
      */
19
-    private function __construct ()
19
+    private function __construct()
20 20
     {
21 21
     }
22 22
 
23 23
     /**
24 24
      * @return \Classes\AdapterMakerFile\AbstractAdapter
25 25
      */
26
-    public static function getInstance ()
26
+    public static function getInstance()
27 27
     {
28
-        $class = get_called_class ();
29
-        $arr = explode ( '\\', $class );
30
-        $classEnd = end ( $arr );
31
-        if ( !isset( self::$_instance[ $classEnd ] ) )
28
+        $class = get_called_class();
29
+        $arr = explode('\\', $class);
30
+        $classEnd = end($arr);
31
+        if ( ! isset(self::$_instance[$classEnd]))
32 32
         {
33
-            self::$_instance[ $classEnd ] = new $class();
33
+            self::$_instance[$classEnd] = new $class();
34 34
         }
35 35
 
36
-        return self::$_instance[ $classEnd ];
36
+        return self::$_instance[$classEnd];
37 37
     }
38 38
 
39 39
     /**
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      *
43 43
      * @return string[]
44 44
      */
45
-    public abstract function parseRelation ( \Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable );
45
+    public abstract function parseRelation(\Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable);
46 46
 
47 47
     /**
48 48
      * @type string
@@ -74,15 +74,15 @@  discard block
 block discarded – undo
74 74
      *
75 75
      * @return bool
76 76
      */
77
-    public function hasDiretory ()
77
+    public function hasDiretory()
78 78
     {
79
-        return !empty( $this->pastName );
79
+        return ! empty($this->pastName);
80 80
     }
81 81
 
82 82
     /**
83 83
      * @return string
84 84
      */
85
-    public function getParentClass ()
85
+    public function getParentClass()
86 86
     {
87 87
         return $this->parentClass;
88 88
     }
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * @return string
93 93
      */
94
-    public function getFileTpl ()
94
+    public function getFileTpl()
95 95
     {
96 96
         return $this->fileTpl;
97 97
     }
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     /**
100 100
      * @return string
101 101
      */
102
-    public function getParentFileTpl ()
102
+    public function getParentFileTpl()
103 103
     {
104 104
         return $this->parentFileTpl;
105 105
     }
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
     /**
108 108
      * @return string
109 109
      */
110
-    public function getPastName ()
110
+    public function getPastName()
111 111
     {
112 112
         return $this->pastName;
113 113
     }
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     /**
116 116
      * @return bool
117 117
      */
118
-    public function isOverwrite ()
118
+    public function isOverwrite()
119 119
     {
120 120
        return $this->overwrite;
121 121
     }
Please login to merge, or discard this patch.
build/Classes/AdapterConfig/Phalcon.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 
18 18
     const SEPARETOR = "_";
19 19
 
20
-    protected function init ()
20
+    protected function init()
21 21
     {
22 22
     }
23 23
 
@@ -26,28 +26,28 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @return array
28 28
      */
29
-    protected function getParams ()
29
+    protected function getParams()
30 30
     {
31 31
 
32 32
     }
33 33
 
34
-    protected function parseFrameworkConfig ()
34
+    protected function parseFrameworkConfig()
35 35
     {
36 36
         // TODO: Implement parseFrameworkConfig() method.
37 37
     }
38 38
 
39
-    public function createClassNamespace ( $table )
39
+    public function createClassNamespace($table)
40 40
     {
41
-        $arrNames = array (
42
-            $this->arrConfig[ 'namespace' ],
41
+        $arrNames = array(
42
+            $this->arrConfig['namespace'],
43 43
             'Model'
44 44
         );
45
-        if ( $table->hasSchema () )
45
+        if ($table->hasSchema())
46 46
         {
47
-            $arrNames[] = ucfirst ( $table->getSchema () );
47
+            $arrNames[] = ucfirst($table->getSchema());
48 48
         }
49 49
 
50
-        return implode ( '_', array_filter ( $arrNames ) );
50
+        return implode('_', array_filter($arrNames));
51 51
     }
52 52
 
53 53
     /**
@@ -55,9 +55,9 @@  discard block
 block discarded – undo
55 55
      *
56 56
      * @return AbstractAdapter[]
57 57
      */
58
-    public function getMakeFileInstances ()
58
+    public function getMakeFileInstances()
59 59
     {
60
-        return array (
60
+        return array(
61 61
         );
62 62
     }
63 63
 
Please login to merge, or discard this patch.
build/Classes/AdapterConfig/AbstractAdapter.php 1 patch
Spacing   +110 added lines, -110 removed lines patch added patch discarded remove patch
@@ -11,78 +11,78 @@  discard block
 block discarded – undo
11 11
 abstract class AbstractAdapter
12 12
 {
13 13
 
14
-    protected $arrConfig = array (
14
+    protected $arrConfig = array(
15 15
         ############################# DATABASE
16 16
         //Driver do banco de dados
17
-        'driver'   => null ,
17
+        'driver'   => null,
18 18
         //Nome do banco de dados
19
-        'database' => null ,
19
+        'database' => null,
20 20
         //Host do banco
21
-        'host'     => 'localhost' ,
21
+        'host'     => 'localhost',
22 22
         //Port do banco
23
-        'port'     => '' ,
23
+        'port'     => '',
24 24
         //usuario do banco
25
-        'username' => null ,
25
+        'username' => null,
26 26
         //senha do banco
27
-        'password' => null ,
27
+        'password' => null,
28 28
         // lista de schemas do banco de dados
29
-        'schema'   => array () ,
29
+        'schema'   => array(),
30 30
 
31
-        'socket'          => null ,
31
+        'socket'          => null,
32 32
 
33 33
         ########################### DOCS
34 34
         // autor que gerou o script
35
-        'author'          => "Pedro" ,
36
-        'license'         => "New BSD License" ,
37
-        'copyright'       => "DAO Generator-Pedro151" ,
38
-        'link'            => 'https://github.com/pedro151' ,
35
+        'author'          => "Pedro",
36
+        'license'         => "New BSD License",
37
+        'copyright'       => "DAO Generator-Pedro151",
38
+        'link'            => 'https://github.com/pedro151',
39 39
         // data que foi gerado o script
40
-        'last_modify'     => null ,
40
+        'last_modify'     => null,
41 41
 
42 42
         ########################## Ambiente/Arquivos
43 43
 
44 44
         // Nome do framework para o adapter
45
-        'framework'       => null ,
45
+        'framework'       => null,
46 46
         // namespace das classes
47
-        'namespace'       => "" ,
47
+        'namespace'       => "",
48 48
         // caminho onde os arquivos devem ser criados
49
-        'path'            => 'models' ,
49
+        'path'            => 'models',
50 50
         // flag para gerar pasta com o nome do driver do banco de dados
51
-        'folder-database' => 0 ,
51
+        'folder-database' => 0,
52 52
 
53 53
         ############################## Comandos adicionais
54 54
         //flag para mostrar o status da execução ao termino do processo
55
-        'status'          => false ,
55
+        'status'          => false,
56 56
         // flags para criar todas as tabelas ou nao
57
-        'allTables'       => true ,
57
+        'allTables'       => true,
58 58
         //Lista de tabelas a serem ignoradas
59
-        'ignoreTable'     => array () ,
59
+        'ignoreTable'     => array(),
60 60
     );
61 61
 
62 62
     /**
63 63
      * @var string[] um array com todos os campos obrigatorios
64 64
      */
65
-    protected $attRequered = array (
66
-        'driver'   => true ,
67
-        'database' => true ,
68
-        'host'     => true ,
69
-        'username' => true ,
65
+    protected $attRequered = array(
66
+        'driver'   => true,
67
+        'database' => true,
68
+        'host'     => true,
69
+        'username' => true,
70 70
        // 'password' => true ,
71 71
         'path'     => true
72 72
     );
73 73
 
74
-    protected $arrFunc = array ();
74
+    protected $arrFunc = array();
75 75
 
76
-    private $framworkFiles = array ();
76
+    private $framworkFiles = array();
77 77
 
78 78
     /**
79 79
      * verifica se todos valores obrigatorios tem valor
80 80
      *
81 81
      * @return bool
82 82
      */
83
-    protected function checkConfig ()
83
+    protected function checkConfig()
84 84
     {
85
-        if ( array_diff_key ( $this->attRequered , array_filter ( $this->arrConfig ) ) )
85
+        if (array_diff_key($this->attRequered, array_filter($this->arrConfig)))
86 86
         {
87 87
             return false;
88 88
         }
@@ -95,47 +95,47 @@  discard block
 block discarded – undo
95 95
      *
96 96
      * @return array
97 97
      */
98
-    protected abstract function getParams ();
98
+    protected abstract function getParams();
99 99
 
100 100
     /**
101 101
      * Popula as config do generater com as configuraçoes do framework
102 102
      *
103 103
      * @return mixed
104 104
      */
105
-    protected abstract function parseFrameworkConfig ();
105
+    protected abstract function parseFrameworkConfig();
106 106
 
107 107
     /**
108 108
      * @param \Classes\Db\DbTable|\Classes\Db\Constrant $table
109 109
      *
110 110
      * @return mixed
111 111
      */
112
-    public abstract function createClassNamespace ( $table );
112
+    public abstract function createClassNamespace($table);
113 113
 
114 114
     /**
115 115
      * Cria Instancias dos arquivos que devem ser gerados
116 116
      *
117 117
      * @return AbstractAdapter[]
118 118
      */
119
-    public abstract function getMakeFileInstances ();
119
+    public abstract function getMakeFileInstances();
120 120
 
121
-    protected abstract function init ();
121
+    protected abstract function init();
122 122
 
123
-    public function __construct ( $array )
123
+    public function __construct($array)
124 124
     {
125
-        $array += array (
126
-            'author'      => ucfirst ( get_current_user () ) ,
127
-            'last_modify' => date ( "d-m-Y H:i:s." )
125
+        $array += array(
126
+            'author'      => ucfirst(get_current_user()),
127
+            'last_modify' => date("d-m-Y H:i:s.")
128 128
         );
129 129
 
130
-        $this->setFrameworkFiles ( $array );
131
-        $this->parseFrameworkConfig ();
132
-        $this->setParams ( $this->getParams () );
133
-        $this->setParams ( $array );
134
-        $this->init ();
135
-        if ( ! $this->isValid () )
130
+        $this->setFrameworkFiles($array);
131
+        $this->parseFrameworkConfig();
132
+        $this->setParams($this->getParams());
133
+        $this->setParams($array);
134
+        $this->init();
135
+        if ( ! $this->isValid())
136 136
         {
137
-            $var = array_diff_key ( $this->attRequered , array_filter ( $this->arrConfig ) );
138
-            throw new Exception( $var );
137
+            $var = array_diff_key($this->attRequered, array_filter($this->arrConfig));
138
+            throw new Exception($var);
139 139
         }
140 140
     }
141 141
 
@@ -144,47 +144,47 @@  discard block
 block discarded – undo
144 144
      *
145 145
      * @param $array
146 146
      */
147
-    public function setFrameworkFiles ( $array )
147
+    public function setFrameworkFiles($array)
148 148
     {
149
-        $this->framworkFiles[ 'library' ] = isset( $array[ 'framework-path-library' ] )
150
-            ? $array[ 'framework-path-library' ]
149
+        $this->framworkFiles['library'] = isset($array['framework-path-library'])
150
+            ? $array['framework-path-library']
151 151
             : null;
152 152
 
153
-        $this->framworkFiles[ 'ini' ] = isset( $array[ 'framework-ini' ] )
154
-            ? $array[ 'framework-ini' ]
153
+        $this->framworkFiles['ini'] = isset($array['framework-ini'])
154
+            ? $array['framework-ini']
155 155
             : null;
156 156
 
157
-        $this->framworkFiles[ 'environment' ] = isset( $array[ 'environment' ] )
158
-            ? $array[ 'environment' ]
157
+        $this->framworkFiles['environment'] = isset($array['environment'])
158
+            ? $array['environment']
159 159
             : 'production';
160 160
 
161 161
     }
162 162
 
163
-    protected function isValidFrameworkFiles ()
163
+    protected function isValidFrameworkFiles()
164 164
     {
165
-        if ( ! is_file ( $this->framworkFiles[ 'ini' ] ) )
165
+        if ( ! is_file($this->framworkFiles['ini']))
166 166
         {
167 167
             return false;
168 168
         }
169 169
 
170
-        if ( ! is_dir ( $this->framworkFiles[ 'library' ] ) )
170
+        if ( ! is_dir($this->framworkFiles['library']))
171 171
         {
172 172
             return false;
173 173
         }
174 174
 
175 175
 
176
-        if ( ! isset ( $this->framworkFiles[ 'environment' ] )
177
-             or empty( $this->framworkFiles[ 'environment' ] )
176
+        if ( ! isset ($this->framworkFiles['environment'])
177
+             or empty($this->framworkFiles['environment'])
178 178
         )
179 179
         {
180 180
             return false;
181 181
         }
182
-        set_include_path (
183
-            implode (
184
-                PATH_SEPARATOR ,
185
-                array (
186
-                    realpath ( $this->framworkFiles[ 'library' ] ) ,
187
-                    get_include_path () ,
182
+        set_include_path(
183
+            implode(
184
+                PATH_SEPARATOR,
185
+                array(
186
+                    realpath($this->framworkFiles['library']),
187
+                    get_include_path(),
188 188
                 )
189 189
             )
190 190
         );
@@ -192,120 +192,120 @@  discard block
 block discarded – undo
192 192
         return true;
193 193
     }
194 194
 
195
-    protected function getFrameworkIni ()
195
+    protected function getFrameworkIni()
196 196
     {
197
-        return $this->framworkFiles[ 'ini' ];
197
+        return $this->framworkFiles['ini'];
198 198
     }
199 199
 
200
-    protected function getEnvironment ()
200
+    protected function getEnvironment()
201 201
     {
202
-        return $this->framworkFiles[ 'environment' ];
202
+        return $this->framworkFiles['environment'];
203 203
     }
204 204
 
205 205
     /**
206 206
      * Popula as variaveis de acordo com o arquivo de configuração do seu  framework
207 207
      */
208
-    protected function isValid ()
208
+    protected function isValid()
209 209
     {
210
-        return $this->checkConfig ();
210
+        return $this->checkConfig();
211 211
     }
212 212
 
213
-    private function setParams ( $array )
213
+    private function setParams($array)
214 214
     {
215
-        if ( count ( $array ) > 0 )
215
+        if (count($array) > 0)
216 216
         {
217
-            $this->arrConfig = array_filter ( $array ) + $this->arrConfig;
217
+            $this->arrConfig = array_filter($array) + $this->arrConfig;
218 218
         }
219 219
     }
220 220
 
221 221
     /**
222 222
      * @return string
223 223
      */
224
-    public function getDatabase ()
224
+    public function getDatabase()
225 225
     {
226
-        return $this->arrConfig[ 'database' ];
226
+        return $this->arrConfig['database'];
227 227
     }
228 228
 
229 229
     /**
230 230
      * @return bool
231 231
      */
232
-    public function hasSchemas ()
232
+    public function hasSchemas()
233 233
     {
234
-        return ! empty ( $this->arrConfig[ 'schema' ] );
234
+        return ! empty ($this->arrConfig['schema']);
235 235
     }
236 236
 
237 237
     /**
238 238
      * @return string[]
239 239
      */
240
-    public function getSchemas ()
240
+    public function getSchemas()
241 241
     {
242
-        if ( is_string ( $this->arrConfig[ 'schema' ] ) )
242
+        if (is_string($this->arrConfig['schema']))
243 243
         {
244
-            return array ( $this->arrConfig[ 'schema' ] );
244
+            return array($this->arrConfig['schema']);
245 245
         }
246 246
 
247
-        return $this->arrConfig[ 'schema' ];
247
+        return $this->arrConfig['schema'];
248 248
     }
249 249
 
250
-    public function setSchema ( $schema )
250
+    public function setSchema($schema)
251 251
     {
252
-        $this->arrConfig[ 'schema' ] = $schema;
252
+        $this->arrConfig['schema'] = $schema;
253 253
     }
254 254
 
255 255
     /**
256 256
      * @return string
257 257
      */
258
-    public function getHost ()
258
+    public function getHost()
259 259
     {
260
-        return $this->arrConfig[ 'host' ];
260
+        return $this->arrConfig['host'];
261 261
     }
262 262
 
263 263
     /**
264 264
      * @return int
265 265
      */
266
-    public function getPort ()
266
+    public function getPort()
267 267
     {
268
-        return $this->arrConfig[ 'port' ];
268
+        return $this->arrConfig['port'];
269 269
     }
270 270
 
271 271
     /**
272 272
      * @return boolean
273 273
      */
274
-    public function hasPort ()
274
+    public function hasPort()
275 275
     {
276
-        return ! empty( $this->arrConfig[ 'port' ] );
276
+        return ! empty($this->arrConfig['port']);
277 277
     }
278 278
 
279 279
     /**
280 280
      * @return string
281 281
      */
282
-    public function getSocket ()
282
+    public function getSocket()
283 283
     {
284
-        return $this->arrConfig[ 'socket' ];
284
+        return $this->arrConfig['socket'];
285 285
     }
286 286
 
287 287
     /**
288 288
      * @return string
289 289
      */
290
-    public function getUser ()
290
+    public function getUser()
291 291
     {
292
-        return $this->arrConfig[ 'username' ];
292
+        return $this->arrConfig['username'];
293 293
     }
294 294
 
295 295
     /**
296 296
      * @return string
297 297
      */
298
-    public function getPassword ()
298
+    public function getPassword()
299 299
     {
300
-        return $this->arrConfig[ 'password' ];
300
+        return $this->arrConfig['password'];
301 301
     }
302 302
 
303 303
     /**
304 304
      * @return bool
305 305
      */
306
-    public function isStatusEnabled ()
306
+    public function isStatusEnabled()
307 307
     {
308
-        return (bool) $this->arrConfig[ 'status' ];
308
+        return (bool) $this->arrConfig['status'];
309 309
     }
310 310
 
311 311
     /**
@@ -313,23 +313,23 @@  discard block
 block discarded – undo
313 313
      *
314 314
      * @return string
315 315
      */
316
-    public function __get ( $str )
316
+    public function __get($str)
317 317
     {
318
-        $arr = array (
319
-            'namespace' ,
320
-            'framework' ,
321
-            'author' ,
322
-            'license' ,
323
-            'copyright' ,
324
-            'link' ,
325
-            'last_modify' ,
326
-            'path' ,
318
+        $arr = array(
319
+            'namespace',
320
+            'framework',
321
+            'author',
322
+            'license',
323
+            'copyright',
324
+            'link',
325
+            'last_modify',
326
+            'path',
327 327
             'folder-database'
328 328
         );
329 329
 
330
-        if ( in_array ( $str , $arr ) )
330
+        if (in_array($str, $arr))
331 331
         {
332
-            return $this->arrConfig[ strtolower ( $str ) ];
332
+            return $this->arrConfig[strtolower($str)];
333 333
         }
334 334
 
335 335
         return;
Please login to merge, or discard this patch.
build/Classes/AdapterConfig/ZendFrameworkOne.php 1 patch
Spacing   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
     const SEPARETOR = "_";
26 26
 
27
-    protected function init ()
27
+    protected function init()
28 28
     {
29 29
     }
30 30
 
@@ -33,75 +33,75 @@  discard block
 block discarded – undo
33 33
      *
34 34
      * @return array
35 35
      */
36
-    protected function getParams ()
36
+    protected function getParams()
37 37
     {
38
-        if ( ! $this->config or !$this->isValidFrameworkFiles ())
38
+        if ( ! $this->config or ! $this->isValidFrameworkFiles())
39 39
         {
40
-            return array ();
40
+            return array();
41 41
         }
42 42
 
43
-        return array (
43
+        return array(
44 44
             //Driver do banco de dados
45
-            'driver'   => $this->config[ 'adapter' ] ,
45
+            'driver'   => $this->config['adapter'],
46 46
             //Nome do banco de dados
47
-            'database' => $this->config[ 'params' ][ 'dbname' ] ,
47
+            'database' => $this->config['params']['dbname'],
48 48
             //Host do banco
49
-            'host'     => $this->config[ 'params' ][ 'host' ] ,
49
+            'host'     => $this->config['params']['host'],
50 50
             //Port do banco
51
-            'port'     => isset( $this->config[ 'params' ][ 'port' ] )
52
-                ? $this->config[ 'params' ][ 'port' ] : '' ,
51
+            'port'     => isset($this->config['params']['port'])
52
+                ? $this->config['params']['port'] : '',
53 53
             //usuario do banco
54
-            'username' => $this->config[ 'params' ][ 'username' ] ,
54
+            'username' => $this->config['params']['username'],
55 55
             //senha do banco
56
-            'password' => $this->config[ 'params' ][ 'password' ] ,
56
+            'password' => $this->config['params']['password'],
57 57
         );
58 58
     }
59 59
 
60
-    protected function parseFrameworkConfig ()
60
+    protected function parseFrameworkConfig()
61 61
     {
62
-        if(!$this->isValidFrameworkFiles ()){
62
+        if ( ! $this->isValidFrameworkFiles()) {
63 63
             return;
64 64
         }
65 65
 
66
-        $frameworkIni = $this->getFrameworkIni ();
66
+        $frameworkIni = $this->getFrameworkIni();
67 67
 
68 68
         require_once 'Zend/Config/Ini.php';
69 69
 
70 70
         $objConfig = new \Zend_Config_Ini(
71
-            realpath ( $frameworkIni ) , $this->getEnvironment ()
71
+            realpath($frameworkIni), $this->getEnvironment()
72 72
         );
73 73
 
74
-        $arrConfig = $objConfig->toArray ();
74
+        $arrConfig = $objConfig->toArray();
75 75
 
76
-        if ( isset( $arrConfig[ 'resources' ][ 'db' ] ) )
76
+        if (isset($arrConfig['resources']['db']))
77 77
         {
78
-            $this->config = $arrConfig[ 'resources' ][ 'db' ];
78
+            $this->config = $arrConfig['resources']['db'];
79 79
         }
80 80
     }
81 81
 
82
-    public function createClassNamespace ( $table )
82
+    public function createClassNamespace($table)
83 83
     {
84
-        $arrNames = array (
85
-            $this->arrConfig[ 'namespace' ] ,
84
+        $arrNames = array(
85
+            $this->arrConfig['namespace'],
86 86
             'Model'
87 87
         );
88 88
 
89
-        if ( isset( $this->arrConfig['folder-database'] )
89
+        if (isset($this->arrConfig['folder-database'])
90 90
              && $this->arrConfig['folder-database']
91 91
         )
92 92
         {
93
-            $arrNames[] = AbstractMaker::getClassName ( $this->arrConfig['driver'] );
93
+            $arrNames[] = AbstractMaker::getClassName($this->arrConfig['driver']);
94 94
         }
95 95
 
96
-        if ( $table->hasSchema () )
96
+        if ($table->hasSchema())
97 97
         {
98
-            $arrNames[] = AbstractMaker::getClassName ( $table->getSchema () );
98
+            $arrNames[] = AbstractMaker::getClassName($table->getSchema());
99 99
         } else
100 100
         {
101
-            $arrNames[] = AbstractMaker::getClassName ( $table->getDatabase () );
101
+            $arrNames[] = AbstractMaker::getClassName($table->getDatabase());
102 102
         }
103 103
 
104
-        return implode ( self::SEPARETOR , array_filter ( $arrNames ) );
104
+        return implode(self::SEPARETOR, array_filter($arrNames));
105 105
     }
106 106
 
107 107
     /**
@@ -109,12 +109,12 @@  discard block
 block discarded – undo
109 109
      *
110 110
      * @return AbstractAdapter[]
111 111
      */
112
-    public function getMakeFileInstances ()
112
+    public function getMakeFileInstances()
113 113
     {
114
-        return array (
115
-            DbTable::getInstance () ,
116
-            Entity::getInstance () ,
117
-            Model::getInstance ()
114
+        return array(
115
+            DbTable::getInstance(),
116
+            Entity::getInstance(),
117
+            Model::getInstance()
118 118
         );
119 119
     }
120 120
 
Please login to merge, or discard this patch.