@@ -21,14 +21,10 @@ |
||
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; |
@@ -556,7 +556,7 @@ discard block |
||
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 |
||
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 |
||
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 | */ |