Completed
Push — master ( acbac5...713fdb )
by David
11s
created
src/TDBMService.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -21,14 +21,10 @@
 block discarded – undo
21 21
 namespace TheCodingMachine\TDBM;
22 22
 
23 23
 use Doctrine\Common\Cache\Cache;
24
-use Doctrine\Common\Cache\VoidCache;
25 24
 use Doctrine\DBAL\Connection;
26 25
 use Doctrine\DBAL\Platforms\AbstractPlatform;
27 26
 use Doctrine\DBAL\Platforms\MySqlPlatform;
28
-use Doctrine\DBAL\Platforms\OraclePlatform;
29
-use Doctrine\DBAL\Schema\Column;
30 27
 use Doctrine\DBAL\Schema\ForeignKeyConstraint;
31
-use Doctrine\DBAL\Schema\Schema;
32 28
 use Doctrine\DBAL\Schema\Table;
33 29
 use Doctrine\DBAL\Types\Type;
34 30
 use Mouf\Database\MagicQuery;
Please login to merge, or discard this patch.
src/Utils/TDBMDaoGenerator.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -556,7 +556,7 @@  discard block
 block discarded – undo
556 556
      * Underscores and spaces are removed and the first letter after the underscore is uppercased.
557 557
      * Quoting is removed if present.
558 558
      *
559
-     * @param $str string
559
+     * @param string $str string
560 560
      *
561 561
      * @return string
562 562
      */
@@ -586,7 +586,7 @@  discard block
 block discarded – undo
586 586
      * Tries to put string to the singular form (if it is plural).
587 587
      * We assume the table names are in english.
588 588
      *
589
-     * @param $str string
589
+     * @param string $str string
590 590
      *
591 591
      * @return string
592 592
      */
@@ -599,7 +599,7 @@  discard block
 block discarded – undo
599 599
      * Put the first letter of the string in lower case.
600 600
      * Very useful to transform a class name into a variable name.
601 601
      *
602
-     * @param $str string
602
+     * @param string $str string
603 603
      *
604 604
      * @return string
605 605
      */
Please login to merge, or discard this patch.