summaryrefslogtreecommitdiffstats
path: root/php-doctrine-orm-version.patch
blob: 900d6531157a2094222d7d31b4c3ad31743a7d8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
diff -up ./lib/Doctrine/ORM/Tools/Console/ConsoleRunner.php.rpm2 ./lib/Doctrine/ORM/Tools/Console/ConsoleRunner.php
--- ./lib/Doctrine/ORM/Tools/Console/ConsoleRunner.php.rpm2	2021-05-25 11:43:30.755931291 +0200
+++ ./lib/Doctrine/ORM/Tools/Console/ConsoleRunner.php	2021-05-25 11:43:41.408887703 +0200
@@ -26,7 +26,6 @@ use Doctrine\ORM\Tools\Console\EntityMan
 use Doctrine\ORM\Tools\Console\EntityManagerProvider\HelperSetManagerProvider;
 use Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper;
 use OutOfBoundsException;
-use PackageVersions\Versions;
 use Symfony\Component\Console\Application;
 use Symfony\Component\Console\Command\Command as SymfonyCommand;
 use Symfony\Component\Console\Helper\HelperSet;
@@ -72,7 +71,7 @@ final class ConsoleRunner
      */
     public static function createApplication($helperSetOrProvider, array $commands = []): Application
     {
-        $cli = new Application('Doctrine Command Line Interface', Versions::getVersion('doctrine/orm'));
+        $cli = new Application('Doctrine Command Line Interface', '@VERSION@');
         $cli->setCatchExceptions(true);
 
         if ($helperSetOrProvider instanceof HelperSet) {
diff -up ./tests/Doctrine/Tests/ORM/Tools/Console/ConsoleRunnerTest.php.rpm2 ./tests/Doctrine/Tests/ORM/Tools/Console/ConsoleRunnerTest.php
--- ./tests/Doctrine/Tests/ORM/Tools/Console/ConsoleRunnerTest.php.rpm2	2021-05-25 11:22:59.000000000 +0200
+++ ./tests/Doctrine/Tests/ORM/Tools/Console/ConsoleRunnerTest.php	2021-05-25 11:43:50.620850013 +0200
@@ -8,7 +8,6 @@ use Doctrine\Deprecations\PHPUnit\Verify
 use Doctrine\ORM\Tools\Console\ConsoleRunner;
 use Doctrine\ORM\Tools\Console\EntityManagerProvider;
 use Doctrine\Tests\DoctrineTestCase;
-use PackageVersions\Versions;
 use Symfony\Component\Console\Command\Command;
 use Symfony\Component\Console\Helper\HelperSet;
 
@@ -28,7 +27,7 @@ final class ConsoleRunnerTest extends Do
         $app       = ConsoleRunner::createApplication($helperSet);
 
         self::assertSame($helperSet, $app->getHelperSet());
-        self::assertSame(Versions::getVersion('doctrine/orm'), $app->getVersion());
+        self::assertSame('@VERSION@', $app->getVersion());
 
         self::assertTrue($app->has('dbal:import'));
         self::assertTrue($app->has('dbal:reserved-words'));