aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/migration/data/v30x
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2015-01-14 12:32:47 +0100
committerTristan Darricau <github@nicofuma.fr>2015-01-20 14:19:55 +0100
commitdab07283573689fcc6eb2c4e270ac37c3a573959 (patch)
tree0aceb458119ef338356daf0e5d9f25838214bb6b /phpBB/phpbb/db/migration/data/v30x
parentce47170c29f4bd7b6a9a4dc74f95be5b4241872d (diff)
downloadforums-dab07283573689fcc6eb2c4e270ac37c3a573959.tar
forums-dab07283573689fcc6eb2c4e270ac37c3a573959.tar.gz
forums-dab07283573689fcc6eb2c4e270ac37c3a573959.tar.bz2
forums-dab07283573689fcc6eb2c4e270ac37c3a573959.tar.xz
forums-dab07283573689fcc6eb2c4e270ac37c3a573959.zip
[ticket/13489] Fix service configuration
PHPBB3-13489
Diffstat (limited to 'phpBB/phpbb/db/migration/data/v30x')
-rw-r--r--phpBB/phpbb/db/migration/data/v30x/release_3_0_5_rc1.php18
1 files changed, 2 insertions, 16 deletions
diff --git a/phpBB/phpbb/db/migration/data/v30x/release_3_0_5_rc1.php b/phpBB/phpbb/db/migration/data/v30x/release_3_0_5_rc1.php
index dc79071e16..c3e887841f 100644
--- a/phpBB/phpbb/db/migration/data/v30x/release_3_0_5_rc1.php
+++ b/phpBB/phpbb/db/migration/data/v30x/release_3_0_5_rc1.php
@@ -13,16 +13,10 @@
namespace phpbb\db\migration\data\v30x;
-use Symfony\Component\DependencyInjection\ContainerAwareInterface;
-use Symfony\Component\DependencyInjection\ContainerInterface;
+use phpbb\db\migration\container_aware_migration;
-class release_3_0_5_rc1 extends \phpbb\db\migration\migration implements ContainerAwareInterface
+class release_3_0_5_rc1 extends container_aware_migration
{
- /**
- * @var ContainerInterface
- */
- protected $container;
-
public function effectively_installed()
{
return phpbb_version_compare($this->config['version'], '3.0.5-RC1', '>=');
@@ -136,12 +130,4 @@ class release_3_0_5_rc1 extends \phpbb\db\migration\migration implements Contain
}
}
}
-
- /**
- * {@inheritdoc}
- */
- public function setContainer(ContainerInterface $container = null)
- {
- $this->container = $container;
- }
}