@@ -12,11 +12,11 @@ |
||
| 12 | 12 | use Entities\Address; |
| 13 | 13 | use Entities\User; |
| 14 | 14 | |
| 15 | -$em = require_once __DIR__ . '/bootstrap.php'; |
|
| 15 | +$em = require_once __DIR__.'/bootstrap.php'; |
|
| 16 | 16 | |
| 17 | 17 | ## PUT YOUR TEST CODE BELOW |
| 18 | 18 | |
| 19 | 19 | $user = new User; |
| 20 | 20 | $address = new Address; |
| 21 | 21 | |
| 22 | -echo 'Hello World!' . PHP_EOL; |
|
| 22 | +echo 'Hello World!'.PHP_EOL; |
|
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | foreach ($props as $name => $prop) { |
| 75 | 75 | $ident += 4; |
| 76 | 76 | $str .= str_repeat(' ', $ident) . '"' . $name . '": ' |
| 77 | - . $this->dump($prop) . ',' . PHP_EOL; |
|
| 77 | + . $this->dump($prop) . ',' . PHP_EOL; |
|
| 78 | 78 | $ident -= 4; |
| 79 | 79 | } |
| 80 | 80 | |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | foreach ($obj as $k => $v) { |
| 88 | 88 | $str .= PHP_EOL . str_repeat(' ', $ident) . '"' |
| 89 | - . $k . '" => ' . $this->dump($v) . ','; |
|
| 89 | + . $k . '" => ' . $this->dump($v) . ','; |
|
| 90 | 90 | $some = true; |
| 91 | 91 | } |
| 92 | 92 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\ORM\Query\AST; |
| 6 | 6 | |
@@ -53,32 +53,32 @@ discard block |
||
| 53 | 53 | $str = ''; |
| 54 | 54 | |
| 55 | 55 | if ($obj instanceof Node) { |
| 56 | - $str .= get_class($obj) . '(' . PHP_EOL; |
|
| 56 | + $str .= get_class($obj).'('.PHP_EOL; |
|
| 57 | 57 | $props = get_object_vars($obj); |
| 58 | 58 | |
| 59 | 59 | foreach ($props as $name => $prop) { |
| 60 | 60 | $ident += 4; |
| 61 | - $str .= str_repeat(' ', $ident) . '"' . $name . '": ' |
|
| 62 | - . $this->dump($prop) . ',' . PHP_EOL; |
|
| 61 | + $str .= str_repeat(' ', $ident).'"'.$name.'": ' |
|
| 62 | + . $this->dump($prop).','.PHP_EOL; |
|
| 63 | 63 | $ident -= 4; |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - $str .= str_repeat(' ', $ident) . ')'; |
|
| 66 | + $str .= str_repeat(' ', $ident).')'; |
|
| 67 | 67 | } elseif (is_array($obj)) { |
| 68 | 68 | $ident += 4; |
| 69 | 69 | $str .= 'array('; |
| 70 | 70 | $some = false; |
| 71 | 71 | |
| 72 | 72 | foreach ($obj as $k => $v) { |
| 73 | - $str .= PHP_EOL . str_repeat(' ', $ident) . '"' |
|
| 74 | - . $k . '" => ' . $this->dump($v) . ','; |
|
| 73 | + $str .= PHP_EOL.str_repeat(' ', $ident).'"' |
|
| 74 | + . $k.'" => '.$this->dump($v).','; |
|
| 75 | 75 | $some = true; |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | $ident -= 4; |
| 79 | - $str .= ($some ? PHP_EOL . str_repeat(' ', $ident) : '') . ')'; |
|
| 79 | + $str .= ($some ? PHP_EOL . str_repeat(' ', $ident) : '').')'; |
|
| 80 | 80 | } elseif (is_object($obj)) { |
| 81 | - $str .= 'instanceof(' . get_class($obj) . ')'; |
|
| 81 | + $str .= 'instanceof('.get_class($obj).')'; |
|
| 82 | 82 | } else { |
| 83 | 83 | $str .= var_export($obj, true); |
| 84 | 84 | } |
@@ -138,8 +138,8 @@ |
||
| 138 | 138 | public function __toString() |
| 139 | 139 | { |
| 140 | 140 | return strtoupper($this->joinType) . ' JOIN ' . $this->join |
| 141 | - . ($this->alias ? ' ' . $this->alias : '') |
|
| 142 | - . ($this->indexBy ? ' INDEX BY ' . $this->indexBy : '') |
|
| 143 | - . ($this->condition ? ' ' . strtoupper($this->conditionType) . ' ' . $this->condition : ''); |
|
| 141 | + . ($this->alias ? ' ' . $this->alias : '') |
|
| 142 | + . ($this->indexBy ? ' INDEX BY ' . $this->indexBy : '') |
|
| 143 | + . ($this->condition ? ' ' . strtoupper($this->conditionType) . ' ' . $this->condition : ''); |
|
| 144 | 144 | } |
| 145 | 145 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\ORM\Query\Expr; |
| 6 | 6 | |
@@ -122,9 +122,9 @@ discard block |
||
| 122 | 122 | */ |
| 123 | 123 | public function __toString() |
| 124 | 124 | { |
| 125 | - return strtoupper($this->joinType) . ' JOIN ' . $this->join |
|
| 126 | - . ($this->alias ? ' ' . $this->alias : '') |
|
| 127 | - . ($this->indexBy ? ' INDEX BY ' . $this->indexBy : '') |
|
| 128 | - . ($this->condition ? ' ' . strtoupper($this->conditionType) . ' ' . $this->condition : ''); |
|
| 125 | + return strtoupper($this->joinType).' JOIN '.$this->join |
|
| 126 | + . ($this->alias ? ' '.$this->alias : '') |
|
| 127 | + . ($this->indexBy ? ' INDEX BY '.$this->indexBy : '') |
|
| 128 | + . ($this->condition ? ' '.strtoupper($this->conditionType).' '.$this->condition : ''); |
|
| 129 | 129 | } |
| 130 | 130 | } |
@@ -5,8 +5,8 @@ discard block |
||
| 5 | 5 | |
| 6 | 6 | // Path to composer autoloader. You can use different provided by your favorite framework, |
| 7 | 7 | // if you want to. |
| 8 | -$loaderPath = __DIR__ . '/../../vendor/autoload.php'; |
|
| 9 | -if(!is_readable($loaderPath)){ |
|
| 8 | +$loaderPath = __DIR__.'/../../vendor/autoload.php'; |
|
| 9 | +if ( ! is_readable($loaderPath)) { |
|
| 10 | 10 | throw new LogicException('Run php composer.phar install at first'); |
| 11 | 11 | } |
| 12 | 12 | $loader = require $loaderPath; |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | $config = new \Doctrine\ORM\Configuration(); |
| 20 | 20 | |
| 21 | 21 | // Set up Metadata Drivers |
| 22 | -$driverImpl = $config->newDefaultAnnotationDriver([__DIR__ . "/Entities"]); |
|
| 22 | +$driverImpl = $config->newDefaultAnnotationDriver([__DIR__."/Entities"]); |
|
| 23 | 23 | $config->setMetadataDriverImpl($driverImpl); |
| 24 | 24 | |
| 25 | 25 | // Set up caches, depending on $debug variable. |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | $config->setQueryCacheImpl($cache); |
| 30 | 30 | |
| 31 | 31 | // Proxy configuration |
| 32 | -$config->setProxyDir(__DIR__ . '/Proxies'); |
|
| 32 | +$config->setProxyDir(__DIR__.'/Proxies'); |
|
| 33 | 33 | $config->setProxyNamespace('Proxies'); |
| 34 | 34 | |
| 35 | 35 | // Database connection information |
@@ -32,8 +32,8 @@ |
||
| 32 | 32 | public function testIsListenerCalledOnlyOnceOnPreFlush() |
| 33 | 33 | { |
| 34 | 34 | $listener = $this->getMockBuilder(DDC2692Listener::class) |
| 35 | - ->setMethods(['preFlush']) |
|
| 36 | - ->getMock(); |
|
| 35 | + ->setMethods(['preFlush']) |
|
| 36 | + ->getMock(); |
|
| 37 | 37 | |
| 38 | 38 | $listener->expects($this->once())->method('preFlush'); |
| 39 | 39 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Functional\Ticket; |
| 6 | 6 | |
@@ -32,8 +32,8 @@ |
||
| 32 | 32 | ->getMock(); |
| 33 | 33 | |
| 34 | 34 | $configuration = $this->getMockBuilder(Configuration::class) |
| 35 | - ->setMethods(['getMetadataDriverImpl']) |
|
| 36 | - ->getMock(); |
|
| 35 | + ->setMethods(['getMetadataDriverImpl']) |
|
| 36 | + ->getMock(); |
|
| 37 | 37 | |
| 38 | 38 | $connection = $this->createMock(Connection::class); |
| 39 | 39 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Functional\Ticket; |
| 6 | 6 | |
@@ -29,8 +29,8 @@ |
||
| 29 | 29 | $uow->scheduleExtraUpdate($user, ['name' => 'changed name']); |
| 30 | 30 | |
| 31 | 31 | $listener = $this->getMockBuilder(\stdClass::class) |
| 32 | - ->setMethods([Events::postFlush]) |
|
| 33 | - ->getMock(); |
|
| 32 | + ->setMethods([Events::postFlush]) |
|
| 33 | + ->getMock(); |
|
| 34 | 34 | |
| 35 | 35 | $listener |
| 36 | 36 | ->expects($this->once()) |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Functional\Ticket; |
| 6 | 6 | |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | $listener |
| 38 | 38 | ->expects($this->once()) |
| 39 | 39 | ->method(Events::postFlush) |
| 40 | - ->will($this->returnCallback(function () use ($uow, $test) { |
|
| 40 | + ->will($this->returnCallback(function() use ($uow, $test) { |
|
| 41 | 41 | $test->assertAttributeEmpty('extraUpdates', $uow, 'ExtraUpdates are reset before postFlush'); |
| 42 | 42 | })); |
| 43 | 43 | |
@@ -136,24 +136,24 @@ |
||
| 136 | 136 | ->will($this->returnValue( 10 )); |
| 137 | 137 | |
| 138 | 138 | $parserResultMock = $this->getMockBuilder(ParserResult::class) |
| 139 | - ->setMethods(['getSqlExecutor']) |
|
| 140 | - ->getMock(); |
|
| 139 | + ->setMethods(['getSqlExecutor']) |
|
| 140 | + ->getMock(); |
|
| 141 | 141 | $parserResultMock->expects($this->once()) |
| 142 | - ->method('getSqlExecutor') |
|
| 143 | - ->will($this->returnValue($sqlExecMock)); |
|
| 142 | + ->method('getSqlExecutor') |
|
| 143 | + ->will($this->returnValue($sqlExecMock)); |
|
| 144 | 144 | |
| 145 | 145 | $cache = $this->getMockBuilder(CacheProvider::class) |
| 146 | - ->setMethods(['doFetch', 'doContains', 'doSave', 'doDelete', 'doFlush', 'doGetStats']) |
|
| 147 | - ->getMock(); |
|
| 146 | + ->setMethods(['doFetch', 'doContains', 'doSave', 'doDelete', 'doFlush', 'doGetStats']) |
|
| 147 | + ->getMock(); |
|
| 148 | 148 | |
| 149 | 149 | $cache->expects($this->at(0))->method('doFetch')->will($this->returnValue(1)); |
| 150 | 150 | $cache->expects($this->at(1)) |
| 151 | - ->method('doFetch') |
|
| 152 | - ->with($this->isType('string')) |
|
| 153 | - ->will($this->returnValue($parserResultMock)); |
|
| 151 | + ->method('doFetch') |
|
| 152 | + ->with($this->isType('string')) |
|
| 153 | + ->will($this->returnValue($parserResultMock)); |
|
| 154 | 154 | |
| 155 | 155 | $cache->expects($this->never()) |
| 156 | - ->method('doSave'); |
|
| 156 | + ->method('doSave'); |
|
| 157 | 157 | |
| 158 | 158 | $query->setQueryCacheDriver($cache); |
| 159 | 159 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Functional; |
| 6 | 6 | |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | |
| 136 | 136 | $sqlExecMock->expects($this->once()) |
| 137 | 137 | ->method('execute') |
| 138 | - ->will($this->returnValue( 10 )); |
|
| 138 | + ->will($this->returnValue(10)); |
|
| 139 | 139 | |
| 140 | 140 | $parserResultMock = $this->getMockBuilder(ParserResult::class) |
| 141 | 141 | ->setMethods(['getSqlExecutor']) |
@@ -30,8 +30,8 @@ |
||
| 30 | 30 | public function testCmsModelSet(string $path) |
| 31 | 31 | { |
| 32 | 32 | $this->em->getConfiguration() |
| 33 | - ->getMetadataDriverImpl() |
|
| 34 | - ->addPaths([$path]); |
|
| 33 | + ->getMetadataDriverImpl() |
|
| 34 | + ->addPaths([$path]); |
|
| 35 | 35 | |
| 36 | 36 | self::assertEmpty($this->validator->validateMapping()); |
| 37 | 37 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Tools; |
| 6 | 6 | |
@@ -42,12 +42,12 @@ discard block |
||
| 42 | 42 | public function modelSetProvider(): array |
| 43 | 43 | { |
| 44 | 44 | return [ |
| 45 | - 'cms' => [__DIR__ . '/../../Models/CMS'], |
|
| 46 | - 'company' => [__DIR__ . '/../../Models/Company'], |
|
| 47 | - 'ecommerce' => [__DIR__ . '/../../Models/ECommerce'], |
|
| 48 | - 'forum' => [__DIR__ . '/../../Models/Forum'], |
|
| 49 | - 'navigation' => [__DIR__ . '/../../Models/Navigation'], |
|
| 50 | - 'routing' => [__DIR__ . '/../../Models/Routing'], |
|
| 45 | + 'cms' => [__DIR__.'/../../Models/CMS'], |
|
| 46 | + 'company' => [__DIR__.'/../../Models/Company'], |
|
| 47 | + 'ecommerce' => [__DIR__.'/../../Models/ECommerce'], |
|
| 48 | + 'forum' => [__DIR__.'/../../Models/Forum'], |
|
| 49 | + 'navigation' => [__DIR__.'/../../Models/Navigation'], |
|
| 50 | + 'routing' => [__DIR__.'/../../Models/Routing'], |
|
| 51 | 51 | ]; |
| 52 | 52 | } |
| 53 | 53 | |