Completed
Push — master ( 6e09bc...9d1ae5 )
by Andrea
11:59
created
src/Fi/CoreBundle/Controller/FiCoreController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -38,6 +38,9 @@
 block discarded – undo
38 38
         return $response;
39 39
     }
40 40
 
41
+    /**
42
+     * @param Request $request
43
+     */
41 44
     public function prepareOutput($request)
42 45
     {
43 46
         $namespace = $this->getNamespace();
Please login to merge, or discard this patch.
src/Fi/CoreBundle/Controller/StampatabellaController.php 1 patch
Doc Comments   +16 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@  discard block
 block discarded – undo
8 8
 class StampatabellaController extends FiCoreController
9 9
 {
10 10
 
11
+    /**
12
+     * @param \Symfony\Component\DependencyInjection\ContainerInterface $container
13
+     */
11 14
     public function __construct($container = null)
12 15
     {
13 16
         if ($container) {
@@ -181,6 +184,9 @@  discard block
 block discarded – undo
181 184
         return $filename;
182 185
     }
183 186
 
187
+    /**
188
+     * @param \PHPExcel_Worksheet $sheet
189
+     */
184 190
     private function printHeaderXls($modellicolonne, $testata, $sheet)
185 191
     {
186 192
         $indicecolonnaheader = 0;
@@ -237,6 +243,9 @@  discard block
 block discarded – undo
237 243
         return $valore;
238 244
     }
239 245
 
246
+    /**
247
+     * @param \PHPExcel_Worksheet $sheet
248
+     */
240 249
     private function printBodyXls($righe, $modellicolonne, $sheet)
241 250
     {
242 251
         $row = 2;
@@ -306,6 +315,13 @@  discard block
 block discarded – undo
306 315
         }
307 316
     }
308 317
 
318
+    /**
319
+     * @param integer $larghezzaform
320
+     * @param integer $h
321
+     * @param integer $border
322
+     * @param string $align
323
+     * @param integer $ln
324
+     */
309 325
     private function stampaTestata($pdf, $nomicolonne, $modellicolonne, $larghezzaform, $h, $border, $align, $fill, $ln)
310 326
     {
311 327
         // Testata
Please login to merge, or discard this patch.
src/Fi/CoreBundle/DependencyInjection/GrigliaRegoleUtils.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Fi\CoreBundle\DependencyInjection;
4 4
 
5
-use Fi\CoreBundle\Controller\GestionepermessiController;
6 5
 use Fi\CoreBundle\Controller\FiUtilita;
7 6
 
8 7
 class GrigliaRegoleUtils
Please login to merge, or discard this patch.
src/Fi/CoreBundle/Entity/Ffprincipale.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
     /**
82 82
      * Remove ffsecondarias.
83 83
      *
84
-     * @param \Fi\CoreBundle\Entity\Ffsecondaria $ffsecondarias
84
+     * @param \Fi\CoreBundle\Entity\Ffsecondaria $Ffsecondarias
85 85
      */
86 86
     public function removeFfsecondaria(\Fi\CoreBundle\Entity\Ffsecondaria $Ffsecondarias)
87 87
     {
Please login to merge, or discard this patch.
src/Fi/CoreBundle/Entity/StoricomodificheRepository.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -48,6 +48,9 @@
 block discarded – undo
48 48
         $em->clear();
49 49
     }
50 50
 
51
+    /**
52
+     * @return string
53
+     */
51 54
     private function getValoreprecedenteImpostare($change)
52 55
     {
53 56
         if (is_object($change)) {
Please login to merge, or discard this patch.
src/Fi/CoreBundle/DependencyInjection/PercentualiStringhe.php 1 patch
Doc Comments   +10 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,9 +42,6 @@  discard block
 block discarded – undo
42 42
      * (con un parametro di tolleranza) allora la percentuale si alza.
43 43
      *
44 44
      * @param array  $parametri
45
-     * @param string $parametri["stringaa"]   prima stringa da confrontare
46
-     * @param string $parametri["stringab"]   seconda stringa da confrontare
47
-     * @param int    $parametri["tolleranza"] numero di posizioni prima e dopo in cui cercare
48 45
      *
49 46
      * @return int
50 47
      */
@@ -77,16 +74,26 @@  discard block
 block discarded – undo
77 74
         return $perc;
78 75
     }
79 76
 
77
+    /**
78
+     * @param integer $i
79
+     * @param integer $strlensa
80
+     */
80 81
     private function getCarattereAPercentualeConfrontoStringhe($i, $stringaa, $strlensa)
81 82
     {
82 83
         return $strlensa >= $i ? substr($stringaa, $i, 1) : false;
83 84
     }
84 85
 
86
+    /**
87
+     * @param integer $i
88
+     */
85 89
     private function getOffsetPercentualeConfrontoStringhe($i, $tolleranzauno)
86 90
     {
87 91
         return (($i - $tolleranzauno) >= 0) ? ($i - $tolleranzauno) : 0;
88 92
     }
89 93
 
94
+    /**
95
+     * @param integer $i
96
+     */
90 97
     private function partecento($i, $posizioneinb, $tolleranzauno, $partecento)
91 98
     {
92 99
         if (!($posizioneinb === false)) {
Please login to merge, or discard this patch.
src/Fi/CoreBundle/Controller/FiUtilita.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -112,6 +112,12 @@
 block discarded – undo
112 112
         return $formattata;
113 113
     }
114 114
 
115
+    /**
116
+     * @param string $aaaa
117
+     * @param string $mm
118
+     * @param string $gg
119
+     * @param boolean $senzalinea
120
+     */
115 121
     private static function getDataFormattata($aaaa, $mm, $gg, $senzalinea)
116 122
     {
117 123
         $separatore = ($senzalinea ? '' : '-');
Please login to merge, or discard this patch.