1
0
mirror of synced 2025-02-02 21:41:45 +03:00

Merge pull request #1499 from issei-m/patch-2

minor: removed useless line breaks
This commit is contained in:
Steve Müller 2015-09-03 16:40:59 +02:00
commit 233ebb0ba1
20 changed files with 0 additions and 39 deletions

View File

@ -90,7 +90,6 @@ class TreeWalkerChainIterator implements \Iterator, \ArrayAccess
return key($this->walkers) !== null; return key($this->walkers) !== null;
} }
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */

View File

@ -22,7 +22,6 @@ namespace Doctrine\ORM\Tools\Console\Helper;
use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\EntityManagerInterface;
use Symfony\Component\Console\Helper\Helper; use Symfony\Component\Console\Helper\Helper;
/** /**
* Doctrine CLI Connection Helper. * Doctrine CLI Connection Helper.
* *

View File

@ -23,7 +23,6 @@ namespace Doctrine\ORM\Tools\Pagination;
use Doctrine\ORM\ORMException; use Doctrine\ORM\ORMException;
use Doctrine\ORM\Query\AST\Functions\FunctionNode; use Doctrine\ORM\Query\AST\Functions\FunctionNode;
/** /**
* RowNumberOverFunction * RowNumberOverFunction
* *

View File

@ -17,7 +17,6 @@
* <http://www.doctrine-project.org>. * <http://www.doctrine-project.org>.
*/ */
namespace Doctrine\ORM\Utility; namespace Doctrine\ORM\Utility;
use Doctrine\ORM\UnitOfWork; use Doctrine\ORM\UnitOfWork;

View File

@ -2,7 +2,6 @@
namespace Doctrine\Tests\Mocks; namespace Doctrine\Tests\Mocks;
use Doctrine\ORM\Cache\CollectionCacheEntry; use Doctrine\ORM\Cache\CollectionCacheEntry;
use Doctrine\ORM\Cache\ConcurrentRegion; use Doctrine\ORM\Cache\ConcurrentRegion;
use Doctrine\ORM\Cache\LockException; use Doctrine\ORM\Cache\LockException;

View File

@ -17,7 +17,6 @@
* <http://www.doctrine-project.org>. * <http://www.doctrine-project.org>.
*/ */
namespace Doctrine\Tests\Models\DirectoryTree; namespace Doctrine\Tests\Models\DirectoryTree;
/** /**

View File

@ -8,7 +8,6 @@ use Doctrine\ORM\Cache\Region\DefaultRegion;
use Doctrine\Tests\Mocks\CacheEntryMock; use Doctrine\Tests\Mocks\CacheEntryMock;
use Doctrine\Tests\Mocks\CacheKeyMock; use Doctrine\Tests\Mocks\CacheKeyMock;
/** /**
* @group DDC-2183 * @group DDC-2183
*/ */

View File

@ -73,5 +73,3 @@ class PostUpdateListener
$this->wasNotified = true; $this->wasNotified = true;
} }
} }

View File

@ -1,9 +1,7 @@
<?php <?php
namespace Doctrine\Tests\ORM\Functional; namespace Doctrine\Tests\ORM\Functional;
use Doctrine\DBAL\DriverManager; use Doctrine\DBAL\DriverManager;
use Doctrine\DBAL\Logging\DebugStack; use Doctrine\DBAL\Logging\DebugStack;
use Doctrine\DBAL\Logging\SQLLogger; use Doctrine\DBAL\Logging\SQLLogger;

View File

@ -92,5 +92,3 @@ class PostFlushListener
$this->receivedArgs = $args; $this->receivedArgs = $args;
} }
} }

View File

@ -87,5 +87,3 @@ class DDC1193Account {
public $id; public $id;
} }

View File

@ -58,5 +58,3 @@ class DDC144Operand extends DDC144Expression {
public $operandProperty; public $operandProperty;
function method() {} function method() {}
} }

View File

@ -60,5 +60,3 @@ class DDC1515Bar
*/ */
public $foo; public $foo;
} }

View File

@ -59,5 +59,3 @@ class DDC2692Listener implements EventSubscriber {
public function preFlush(PreFlushEventArgs $args) { public function preFlush(PreFlushEventArgs $args) {
} }
} }

View File

@ -71,5 +71,3 @@ class DDC444User
*/ */
public $name; public $name;
} }

View File

@ -65,7 +65,3 @@ class DDC493Contact
/** @Column(type="string") */ /** @Column(type="string") */
public $data; public $data;
} }

View File

@ -86,7 +86,3 @@ class DDC512Item
*/ */
public $id; public $id;
} }

View File

@ -67,7 +67,3 @@ class DDC513Price {
/** @Column(type="string") */ /** @Column(type="string") */
public $data; public $data;
} }

View File

@ -17,7 +17,6 @@
* <http://www.doctrine-project.org>. * <http://www.doctrine-project.org>.
*/ */
namespace Doctrine\Tests\ORM\Mapping; namespace Doctrine\Tests\ORM\Mapping;
use Doctrine\ORM\Mapping\ClassMetadata; use Doctrine\ORM\Mapping\ClassMetadata;

View File

@ -114,6 +114,3 @@ class PersisterPerformanceTest extends \Doctrine\Tests\OrmFunctionalTestCase
echo "100 CmsUser: " . number_format(microtime(true) - $start, 6) . "\n"; echo "100 CmsUser: " . number_format(microtime(true) - $start, 6) . "\n";
} }
} }