Completed
Push — master ( 497e6f...98e4ef )
by Filip
02:12
created
src/Kdyby/Doctrine/DI/OrmExtension.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -447,6 +447,9 @@
 block discarded – undo
447 447
 
448 448
 
449 449
 
450
+	/**
451
+	 * @param boolean $isDefault
452
+	 */
450 453
 	protected function processSecondLevelCache($name, array $config, $isDefault)
451 454
 	{
452 455
 		if (!$config['enabled']) {
Please login to merge, or discard this patch.
src/Kdyby/Doctrine/Mapping/ResultSetMappingBuilder.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@
 block discarded – undo
45 45
 
46 46
 
47 47
 
48
+	/**
49
+	 * @param integer $defaultRenameMode
50
+	 */
48 51
 	public function __construct(EntityManager $em, $defaultRenameMode = Doctrine\ORM\Query\ResultSetMappingBuilder::COLUMN_RENAMING_INCREMENT)
49 52
 	{
50 53
 		parent::__construct($em, $defaultRenameMode);
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 use Doctrine;
14 14
 use Doctrine\ORM\EntityManager;
15 15
 use Kdyby;
16
-use Nette;
17 16
 
18 17
 
19 18
 
Please login to merge, or discard this patch.
src/Kdyby/Doctrine/NativeQueryWrapper.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 use Doctrine\ORM\NativeQuery;
18 18
 use Doctrine\ORM\Query;
19 19
 use Kdyby;
20
-use Nette;
21 20
 
22 21
 
23 22
 
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -199,6 +199,9 @@
 block discarded – undo
199 199
 
200 200
 
201 201
 
202
+	/**
203
+	 * @return string
204
+	 */
202 205
 	public function getSQL()
203 206
 	{
204 207
 		return $this->nativeQuery->getSQL();
Please login to merge, or discard this patch.
src/Kdyby/Doctrine/PDOStatement.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 
13 13
 use Doctrine\DBAL\Statement;
14 14
 use Kdyby;
15
-use Nette;
16 15
 
17 16
 
18 17
 
Please login to merge, or discard this patch.
src/Kdyby/Doctrine/Diagnostics/FileLogger.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 use Doctrine\DBAL\Logging\SQLLogger;
14 14
 use Kdyby;
15 15
 use Nette;
16
-use Tracy\Debugger;
17 16
 
18 17
 
19 18
 
Please login to merge, or discard this patch.
src/Kdyby/Doctrine/Connection.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
 	/**
64 64
 	 * @internal
65
-	 * @param Doctrine\ORM\EntityManager $em
65
+	 * @param EntityManager $em
66 66
 	 * @return $this
67 67
 	 */
68 68
 	public function bindEntityManager(Doctrine\ORM\EntityManager $em)
@@ -427,7 +427,7 @@  discard block
 block discarded – undo
427 427
 
428 428
 
429 429
 	/**
430
-	 * @param \Exception|\Throwable $e
430
+	 * @param \PDOException $e
431 431
 	 * @return string|NULL
432 432
 	 */
433 433
 	private static function resolveExceptionTable($e)
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use Doctrine\DBAL\Types\Type;
16 16
 use Doctrine\DBAL\Driver;
17 17
 use Kdyby;
18
-use Nette;
19 18
 use PDO;
20 19
 use Tracy;
21 20
 
Please login to merge, or discard this patch.
src/Kdyby/Doctrine/EntityManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 use Kdyby\Doctrine\QueryObject;
21 21
 use Kdyby\Doctrine\Tools\NonLockingUniqueInserter;
22 22
 use Kdyby\Persistence;
23
-use Nette;
24 23
 
25 24
 
26 25
 
Please login to merge, or discard this patch.
src/Kdyby/Doctrine/EntityRepository.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
 use Doctrine\ORM\NonUniqueResultException;
17 17
 use Kdyby;
18 18
 use Kdyby\Persistence;
19
-use Nette;
20 19
 
21 20
 
22 21
 
Please login to merge, or discard this patch.
src/Kdyby/Doctrine/Helpers.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 namespace Kdyby\Doctrine;
12 12
 
13 13
 use Kdyby;
14
-use Nette;
15 14
 use Doctrine\DBAL\Types\Type;
16 15
 
17 16
 
Please login to merge, or discard this patch.