Skip to content

Commit 0780988

Browse files
author
Alexander Obuhovich
committed
Change namespace from "aik099\" to "ConsoleHelpers\"
1 parent eec96a0 commit 0780988

File tree

89 files changed

+264
-264
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+264
-264
lines changed

bin/svn-buddy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ class DetectAutoloader
4545

4646
DetectAutoloader::detect();
4747

48-
$container = new \aik099\SVNBuddy\DIContainer();
49-
$app = new \aik099\SVNBuddy\Application($container);
48+
$container = new \ConsoleHelpers\SVNBuddy\DIContainer();
49+
$app = new \ConsoleHelpers\SVNBuddy\Application($container);
5050
$app->run($container['input'], $container['output']);

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
},
2121
"autoload": {
2222
"psr-4": {
23-
"aik099\\SVNBuddy\\": "src/SVNBuddy/"
23+
"ConsoleHelpers\\SVNBuddy\\": "src/SVNBuddy/"
2424
}
2525
},
2626
"autoload-dev": {
2727
"psr-4": {
28-
"Tests\\aik099\\SVNBuddy\\": "tests/SVNBuddy/"
28+
"Tests\\ConsoleHelpers\\SVNBuddy\\": "tests/SVNBuddy/"
2929
}
3030
},
3131
"bin": ["bin/svn-buddy"]

src/SVNBuddy/Application.php

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@
88
* @link https://github.com/console-helpers/svn-buddy
99
*/
1010

11-
namespace aik099\SVNBuddy;
12-
13-
14-
use aik099\SVNBuddy\Command\AggregateCommand;
15-
use aik099\SVNBuddy\Command\CleanupCommand;
16-
use aik099\SVNBuddy\Command\CommitCommand;
17-
use aik099\SVNBuddy\Command\CompletionCommand;
18-
use aik099\SVNBuddy\Command\ConfigCommand;
19-
use aik099\SVNBuddy\Command\LogCommand;
20-
use aik099\SVNBuddy\Command\MergeCommand;
21-
use aik099\SVNBuddy\Command\ResolveCommand;
22-
use aik099\SVNBuddy\Command\RevertCommand;
23-
use aik099\SVNBuddy\Command\UpdateCommand;
24-
use aik099\SVNBuddy\Repository\Connector\Connector;
11+
namespace ConsoleHelpers\SVNBuddy;
12+
13+
14+
use ConsoleHelpers\SVNBuddy\Command\AggregateCommand;
15+
use ConsoleHelpers\SVNBuddy\Command\CleanupCommand;
16+
use ConsoleHelpers\SVNBuddy\Command\CommitCommand;
17+
use ConsoleHelpers\SVNBuddy\Command\CompletionCommand;
18+
use ConsoleHelpers\SVNBuddy\Command\ConfigCommand;
19+
use ConsoleHelpers\SVNBuddy\Command\LogCommand;
20+
use ConsoleHelpers\SVNBuddy\Command\MergeCommand;
21+
use ConsoleHelpers\SVNBuddy\Command\ResolveCommand;
22+
use ConsoleHelpers\SVNBuddy\Command\RevertCommand;
23+
use ConsoleHelpers\SVNBuddy\Command\UpdateCommand;
24+
use ConsoleHelpers\SVNBuddy\Repository\Connector\Connector;
2525
use Pimple\Container;
2626
use Symfony\Component\Console\Application as BaseApplication;
2727

src/SVNBuddy/Cache/CacheManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @link https://github.com/console-helpers/svn-buddy
99
*/
1010

11-
namespace aik099\SVNBuddy\Cache;
11+
namespace ConsoleHelpers\SVNBuddy\Cache;
1212

1313

1414
class CacheManager

src/SVNBuddy/Cache/FileCacheStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @link https://github.com/console-helpers/svn-buddy
99
*/
1010

11-
namespace aik099\SVNBuddy\Cache;
11+
namespace ConsoleHelpers\SVNBuddy\Cache;
1212

1313

1414
/**

src/SVNBuddy/Cache/ICacheStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @link https://github.com/console-helpers/svn-buddy
99
*/
1010

11-
namespace aik099\SVNBuddy\Cache;
11+
namespace ConsoleHelpers\SVNBuddy\Cache;
1212

1313

1414
interface ICacheStorage

src/SVNBuddy/Command/AbstractCommand.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
88
* @link https://github.com/console-helpers/svn-buddy
99
*/
1010

11-
namespace aik099\SVNBuddy\Command;
11+
namespace ConsoleHelpers\SVNBuddy\Command;
1212

1313

14-
use aik099\SVNBuddy\Config\ConfigEditor;
15-
use aik099\SVNBuddy\Config\AbstractConfigSetting;
16-
use aik099\SVNBuddy\Exception\CommandException;
17-
use aik099\SVNBuddy\Helper\ContainerHelper;
18-
use aik099\SVNBuddy\ConsoleIO;
19-
use aik099\SVNBuddy\Repository\Connector\Connector;
20-
use aik099\SVNBuddy\Repository\RevisionLog\RevisionLog;
21-
use aik099\SVNBuddy\Repository\RevisionLog\RevisionLogFactory;
14+
use ConsoleHelpers\SVNBuddy\Config\ConfigEditor;
15+
use ConsoleHelpers\SVNBuddy\Config\AbstractConfigSetting;
16+
use ConsoleHelpers\SVNBuddy\Exception\CommandException;
17+
use ConsoleHelpers\SVNBuddy\Helper\ContainerHelper;
18+
use ConsoleHelpers\SVNBuddy\ConsoleIO;
19+
use ConsoleHelpers\SVNBuddy\Repository\Connector\Connector;
20+
use ConsoleHelpers\SVNBuddy\Repository\RevisionLog\RevisionLog;
21+
use ConsoleHelpers\SVNBuddy\Repository\RevisionLog\RevisionLogFactory;
2222
use Pimple\Container;
2323
use Stecman\Component\Symfony\Console\BashCompletion\Completion\CompletionAwareInterface;
2424
use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;

src/SVNBuddy/Command/AggregateCommand.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
* @link https://github.com/console-helpers/svn-buddy
99
*/
1010

11-
namespace aik099\SVNBuddy\Command;
11+
namespace ConsoleHelpers\SVNBuddy\Command;
1212

1313

14-
use aik099\SVNBuddy\Config\AbstractConfigSetting;
15-
use aik099\SVNBuddy\Config\PathsConfigSetting;
16-
use aik099\SVNBuddy\Exception\CommandException;
14+
use ConsoleHelpers\SVNBuddy\Config\AbstractConfigSetting;
15+
use ConsoleHelpers\SVNBuddy\Config\PathsConfigSetting;
16+
use ConsoleHelpers\SVNBuddy\Exception\CommandException;
1717
use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
1818
use Symfony\Component\Console\Input\InputArgument;
1919
use Symfony\Component\Console\Input\InputInterface;

src/SVNBuddy/Command/CleanupCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @link https://github.com/console-helpers/svn-buddy
99
*/
1010

11-
namespace aik099\SVNBuddy\Command;
11+
namespace ConsoleHelpers\SVNBuddy\Command;
1212

1313

1414
use Symfony\Component\Console\Input\InputArgument;

src/SVNBuddy/Command/CommitCommand.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
* @link https://github.com/console-helpers/svn-buddy
99
*/
1010

11-
namespace aik099\SVNBuddy\Command;
11+
namespace ConsoleHelpers\SVNBuddy\Command;
1212

1313

14-
use aik099\SVNBuddy\Exception\CommandException;
15-
use aik099\SVNBuddy\InteractiveEditor;
16-
use aik099\SVNBuddy\Repository\Parser\RevisionListParser;
14+
use ConsoleHelpers\SVNBuddy\Exception\CommandException;
15+
use ConsoleHelpers\SVNBuddy\InteractiveEditor;
16+
use ConsoleHelpers\SVNBuddy\Repository\Parser\RevisionListParser;
1717
use Symfony\Component\Console\Input\InputArgument;
1818
use Symfony\Component\Console\Input\InputInterface;
1919
use Symfony\Component\Console\Output\OutputInterface;

0 commit comments

Comments
 (0)