Skip to content

Commit cc3d0c4

Browse files
authored
Merge pull request #1519 from spryker/bugfix/cs
Fix CS.
2 parents 297473a + 1699296 commit cc3d0c4

File tree

7 files changed

+0
-7
lines changed

7 files changed

+0
-7
lines changed

src/Propel/Generator/Builder/Om/ExtensionObjectBuilder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ protected function addClassOpen(&$script)
6060
* You should add additional methods to this class to meet the
6161
* application requirements. This class will only be generated as
6262
* long as it does not already exist in the output directory.
63-
*
6463
*/";
6564
}
6665
$script .= PHP_EOL . ($table->isAbstract() ? "abstract " : "")."class ".$this->getUnqualifiedClassName()." extends $baseClassName

src/Propel/Generator/Builder/Om/ExtensionQueryBuilder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ protected function addClassOpen(&$script)
6060
* You should add additional methods to this class to meet the
6161
* application requirements. This class will only be generated as
6262
* long as it does not already exist in the output directory.
63-
*
6463
*/";
6564
}
6665
$script .= "

src/Propel/Generator/Builder/Om/ExtensionQueryInheritanceBuilder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ protected function addClassOpen(&$script)
108108
* You should add additional methods to this class to meet the
109109
* application requirements. This class will only be generated as
110110
* long as it does not already exist in the output directory.
111-
*
112111
*/";
113112
}
114113
$script .= "

src/Propel/Generator/Builder/Om/InterfaceBuilder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ protected function addClassOpen(&$script)
5959
* You should add additional method declarations to this interface to meet the
6060
* application requirements. This interface will only be generated as
6161
* long as it does not already exist in the output directory.
62-
*
6362
*/
6463
interface ".$this->getUnqualifiedClassName()."
6564
{

src/Propel/Generator/Builder/Om/MultiExtendObjectBuilder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ protected function addClassOpen(&$script)
141141
* You should add additional methods to this class to meet the
142142
* application requirements. This class will only be generated as
143143
* long as it does not already exist in the output directory.
144-
*
145144
*/";
146145
}
147146
$script .= "

src/Propel/Generator/Builder/Om/QueryInheritanceBuilder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ protected function addClassOpen(&$script)
147147
* You should add additional methods to this class to meet the
148148
* application requirements. This class will only be generated as
149149
* long as it does not already exist in the output directory.
150-
*
151150
*/
152151
class " .$this->getUnqualifiedClassName() . " extends " . $baseClassName . "
153152
{

src/Propel/Generator/Builder/Om/TableMapBuilder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ protected function addClassOpen(&$script)
8686
* For example, the createSelectSql() method checks the type of a given column used in an
8787
* ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
8888
* (i.e. if it's a text column type).
89-
*
9089
*/
9190
class ".$this->getUnqualifiedClassName()." extends TableMap
9291
{

0 commit comments

Comments
 (0)