Skip to content

Commit 02d6811

Browse files
committed
Replaces 'propel' with 'palepurple' in hardcoded paths.
1 parent 8a8d24b commit 02d6811

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

DependencyInjection/PropelExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function load(array $configs, ContainerBuilder $container)
3535
$config = $processor->processConfiguration($configuration, $configs);
3636

3737
// Composer
38-
if (file_exists($propelPath = $container->getParameter('kernel.root_dir') . '/../vendor/propel/propel1')) {
38+
if (file_exists($propelPath = $container->getParameter('kernel.root_dir') . '/../vendor/palepurple/propel1')) {
3939
$container->setParameter('propel.path', $propelPath);
4040
}
4141
if (file_exists($phingPath = $container->getParameter('kernel.root_dir') . '/../vendor/phing/phing/classes')) {

Tests/Command/GeneratorAwareCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ protected function setUp()
2525
parent::setUp();
2626

2727
$this->container = $this->getContainer();
28-
$this->container->setParameter('propel.path', __DIR__ . '/../../vendor/propel/propel1');
28+
$this->container->setParameter('propel.path', __DIR__ . '/../../vendor/palepurple/propel1');
2929
}
3030

3131
public function testGetDatabasesFromSchema()

Tests/TestCase.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class TestCase extends \PHPUnit_Framework_TestCase
2121
{
2222
public static function setUpBeforeClass()
2323
{
24-
if (!file_exists($file = __DIR__ . '/../vendor/propel/propel1/runtime/lib/Propel.php')) {
24+
if (!file_exists($file = __DIR__ . '/../vendor/palepurple/propel1/runtime/lib/Propel.php')) {
2525
self::markTestSkipped('Propel is not available.');
2626
}
2727

@@ -38,10 +38,10 @@ public function getContainer()
3838

3939
protected function loadPropelQuickBuilder()
4040
{
41-
require_once __DIR__ . '/../vendor/propel/propel1/runtime/lib/Propel.php';
42-
require_once __DIR__ . '/../vendor/propel/propel1/runtime/lib/adapter/DBAdapter.php';
43-
require_once __DIR__ . '/../vendor/propel/propel1/runtime/lib/adapter/DBSQLite.php';
44-
require_once __DIR__ . '/../vendor/propel/propel1/runtime/lib/connection/PropelPDO.php';
45-
require_once __DIR__ . '/../vendor/propel/propel1/generator/lib/util/PropelQuickBuilder.php';
41+
require_once __DIR__ . '/../vendor/palepurple/propel1/runtime/lib/Propel.php';
42+
require_once __DIR__ . '/../vendor/palepurple/propel1/runtime/lib/adapter/DBAdapter.php';
43+
require_once __DIR__ . '/../vendor/palepurple/propel1/runtime/lib/adapter/DBSQLite.php';
44+
require_once __DIR__ . '/../vendor/palepurple/propel1/runtime/lib/connection/PropelPDO.php';
45+
require_once __DIR__ . '/../vendor/palepurple/propel1/generator/lib/util/PropelQuickBuilder.php';
4646
}
4747
}

0 commit comments

Comments
 (0)