Skip to content

Commit a65e1b8

Browse files
committed
[TASK] Define more unique vendor name
Closes: #18
1 parent b190191 commit a65e1b8

File tree

82 files changed

+287
-287
lines changed

Some content is hidden

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

82 files changed

+287
-287
lines changed

Classes/AbstractSeeder.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Dennis\Seeder;
2+
namespace TildBJ\Seeder;
33

44
/***************************************************************
55
* Copyright notice
@@ -24,7 +24,7 @@
2424
*
2525
* This copyright notice MUST APPEAR in all copies of the script!
2626
***************************************************************/
27-
use Dennis\Seeder\Collection\SeedCollection;
27+
use TildBJ\Seeder\Collection\SeedCollection;
2828
use TYPO3\CMS\Core\Utility\GeneralUtility;
2929

3030
/**
@@ -57,7 +57,7 @@ public function __construct()
5757
{
5858
$this->factory = GeneralUtility::makeInstance(
5959
Factory\SeederFactory::class,
60-
\Dennis\Seeder\Factory\FakerFactory::createFaker()
60+
\TildBJ\Seeder\Factory\FakerFactory::createFaker()
6161
);
6262
}
6363

Classes/Collection/SeedCollection.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Dennis\Seeder\Collection;
2+
namespace TildBJ\Seeder\Collection;
33

44
/***************************************************************
55
* Copyright notice
@@ -25,8 +25,8 @@
2525
* This copyright notice MUST APPEAR in all copies of the script!
2626
***************************************************************/
2727

28-
use Dennis\Seeder\Seed;
29-
use Dennis\Seeder\Seeder;
28+
use TildBJ\Seeder\Seed;
29+
use TildBJ\Seeder\Seeder;
3030

3131
/**
3232
* SeedCollection
@@ -35,7 +35,7 @@
3535
* @copyright Copyright belongs to the respective authors
3636
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
3737
*/
38-
class SeedCollection implements \Dennis\Seeder\SeedCollection
38+
class SeedCollection implements \TildBJ\Seeder\SeedCollection
3939
{
4040
/**
4141
* seeds
@@ -109,7 +109,7 @@ public function each(callable $function)
109109
continue;
110110
}
111111
$seed->isExecuted(true);
112-
$function($seed, \Dennis\Seeder\Factory\FakerFactory::createFaker());
112+
$function($seed, \TildBJ\Seeder\Factory\FakerFactory::createFaker());
113113
}
114114

115115
return $this;

Classes/Command/SeederCommandController.php

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Dennis\Seeder\Command;
2+
namespace TildBJ\Seeder\Command;
33

44
/***************************************************************
55
* Copyright notice
@@ -25,8 +25,8 @@
2525
* This copyright notice MUST APPEAR in all copies of the script!
2626
***************************************************************/
2727

28-
use Dennis\Seeder\Domain\Model\ColumnInterface;
29-
use Dennis\Seeder\Generator\MethodNameGenerator;
28+
use TildBJ\Seeder\Domain\Model\ColumnInterface;
29+
use TildBJ\Seeder\Generator\MethodNameGenerator;
3030
use TYPO3\CMS\Core\Utility\GeneralUtility;
3131

3232
/**
@@ -43,7 +43,7 @@ class SeederCommandController extends \TYPO3\CMS\Extbase\Mvc\Controller\CommandC
4343
*
4444
* @var string $namespace
4545
*/
46-
protected $namespace = 'Dennis\Seeder\Seeder';
46+
protected $namespace = 'TildBJ\Seeder\Seeder';
4747

4848
/**
4949
* path
@@ -65,14 +65,14 @@ class SeederCommandController extends \TYPO3\CMS\Extbase\Mvc\Controller\CommandC
6565
protected $methodNameGenerator;
6666

6767
/**
68-
* @var \Dennis\Seeder\Utility\OutputUtility
68+
* @var \TildBJ\Seeder\Utility\OutputUtility
6969
* @inject
7070
*/
7171
protected $outputUtility;
7272

7373
public function __construct()
7474
{
75-
$faker = \Dennis\Seeder\Factory\FakerFactory::createFaker();
75+
$faker = \TildBJ\Seeder\Factory\FakerFactory::createFaker();
7676
$this->methodNameGenerator = GeneralUtility::makeInstance(MethodNameGenerator::class, $faker);
7777
}
7878

@@ -86,7 +86,7 @@ public function seedCommand($seed)
8686
{
8787
$class = $this->resolveSeederClass($seed);
8888

89-
/** @var \Dennis\Seeder\Seeder $seeder */
89+
/** @var \TildBJ\Seeder\Seeder $seeder */
9090
$seeder = new $class;
9191
$seeder->run();
9292
$seeder->seed();
@@ -102,28 +102,28 @@ public function seedCommand($seed)
102102
protected function detectSeederInformations($tableName)
103103
{
104104
$informations = [];
105-
$faker = \Dennis\Seeder\Factory\FakerFactory::createFaker();
106-
$table = \Dennis\Seeder\Factory\TableFactory::createTable($tableName);
105+
$faker = \TildBJ\Seeder\Factory\FakerFactory::createFaker();
106+
$table = \TildBJ\Seeder\Factory\TableFactory::createTable($tableName);
107107

108108
/** @var ColumnInterface $column */
109109
foreach ($table->getColumns() as $column) {
110-
if (in_array($column->getName(), \Dennis\Seeder\Provider\Faker::$skippedProvider)) {
110+
if (in_array($column->getName(), \TildBJ\Seeder\Provider\Faker::$skippedProvider)) {
111111
continue;
112112
}
113113
$provider = $faker->guessProviderName($column->getName());
114-
$informationClassName = 'Dennis\\Seeder\\Information\\' . ucfirst(GeneralUtility::underscoredToLowerCamelCase($column->getName()) . 'Information');
114+
$informationClassName = 'TildBJ\\Seeder\\Information\\' . ucfirst(GeneralUtility::underscoredToLowerCamelCase($column->getName()) . 'Information');
115115
$relationInformationAvailable = false;
116116
if ($column->getName() !== 'abstract' && class_exists($informationClassName)) {
117117
$information = GeneralUtility::makeInstance($informationClassName);
118118
} elseif ($this->isRelation($column)) {
119-
$information = GeneralUtility::makeInstance(\Dennis\Seeder\Information\RelationInformation::class);
119+
$information = GeneralUtility::makeInstance(\TildBJ\Seeder\Information\RelationInformation::class);
120120
$relationInformationAvailable = true;
121121
} else {
122-
$information = GeneralUtility::makeInstance(\Dennis\Seeder\Information\NullInformation::class);
122+
$information = GeneralUtility::makeInstance(\TildBJ\Seeder\Information\NullInformation::class);
123123
$information->setDefaultValue($provider);
124124
}
125-
if (!$information instanceof \Dennis\Seeder\Information) {
126-
throw new \Exception($informationClassName . ' must implement ' . \Dennis\Seeder\Information::class);
125+
if (!$information instanceof \TildBJ\Seeder\Information) {
126+
throw new \Exception($informationClassName . ' must implement ' . \TildBJ\Seeder\Information::class);
127127
}
128128

129129
if ($this->isRelation($column) && $relationInformationAvailable) {
@@ -138,15 +138,15 @@ protected function detectSeederInformations($tableName)
138138
}
139139
} else {
140140
switch ($information->getType()) {
141-
case \Dennis\Seeder\Information::INFORMATION_TYPE_ASK:
141+
case \TildBJ\Seeder\Information::INFORMATION_TYPE_ASK:
142142
if (!is_null($response = $this->askOrSelect($information->getQuestion([$column->getName(), $provider]), $information->getDefaultValue()))) {
143143
if ($this->methodNameGenerator->generate($response)) {
144144
$informations[$column->getName()] = $this->methodNameGenerator->generate($response);
145145
}
146146
}
147147
break;
148-
case \Dennis\Seeder\Information::INFORMATION_TYPE_SELECT:
149-
case \Dennis\Seeder\Information::INFORMATION_TYPE_SELECTMULTIPLE:
148+
case \TildBJ\Seeder\Information::INFORMATION_TYPE_SELECT:
149+
case \TildBJ\Seeder\Information::INFORMATION_TYPE_SELECTMULTIPLE:
150150
if (!is_null($response = $this->askOrSelect($information->getQuestion([$column->getName(), $provider]), $information->getDefaultValue(), $information->getChoices()))) {
151151
if ($this->methodNameGenerator->generate($response)) {
152152
$informations[$column->getName()] = $this->methodNameGenerator->generate($response);
@@ -162,8 +162,8 @@ protected function detectSeederInformations($tableName)
162162
}
163163

164164
if (!isset($informations['pid'])) {
165-
/** @var \Dennis\Seeder\Information $information */
166-
$information = GeneralUtility::makeInstance(\Dennis\Seeder\Information\PidInformation::class);
165+
/** @var \TildBJ\Seeder\Information $information */
166+
$information = GeneralUtility::makeInstance(\TildBJ\Seeder\Information\PidInformation::class);
167167
$informations['pid'] = $this->outputUtility->ask($information->getQuestion(), $information->getDefaultValue());
168168
}
169169

@@ -178,9 +178,9 @@ protected function isRelation(ColumnInterface $column)
178178
{
179179
return (
180180
(
181-
$column instanceof \Dennis\Seeder\Domain\Model\Column\Select ||
182-
$column instanceof \Dennis\Seeder\Domain\Model\Column\Inline ||
183-
$column instanceof \Dennis\Seeder\Domain\Model\Column\Group
181+
$column instanceof \TildBJ\Seeder\Domain\Model\Column\Select ||
182+
$column instanceof \TildBJ\Seeder\Domain\Model\Column\Inline ||
183+
$column instanceof \TildBJ\Seeder\Domain\Model\Column\Group
184184
) &&
185185
$column->getForeignTable()
186186
);

Classes/Connection.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Dennis\Seeder;
2+
namespace TildBJ\Seeder;
33

44
/***************************************************************
55
* Copyright notice

Classes/Connection/DatabaseConnection.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Dennis\Seeder\Connection;
3+
namespace TildBJ\Seeder\Connection;
44

55
/***************************************************************
66
* Copyright notice
@@ -25,8 +25,8 @@
2525
*
2626
* This copyright notice MUST APPEAR in all copies of the script!
2727
***************************************************************/
28-
use Dennis\Seeder\Connection;
29-
use Dennis\Seeder;
28+
use TildBJ\Seeder\Connection;
29+
use TildBJ\Seeder;
3030
use TYPO3\CMS\Core\Utility\GeneralUtility;
3131

3232
/**
@@ -48,7 +48,7 @@ class DatabaseConnection implements Connection
4848
/**
4949
* output
5050
*
51-
* @var \Dennis\Seeder\Message $message
51+
* @var \TildBJ\Seeder\Message $message
5252
*/
5353
protected $message;
5454

@@ -70,7 +70,7 @@ class DatabaseConnection implements Connection
7070
* DatabaseConnection constructor.
7171
*
7272
* @param \TYPO3\CMS\Core\Database\DatabaseConnection $connection
73-
* @param \Dennis\Seeder\Message $message
73+
* @param \TildBJ\Seeder\Message $message
7474
*/
7575
public function __construct(
7676
\TYPO3\CMS\Core\Database\DatabaseConnection $connection,

Classes/Connection/NotFoundException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Dennis\Seeder\Connection;
2+
namespace TildBJ\Seeder\Connection;
33

44
/***************************************************************
55
* Copyright notice

Classes/Domain/Model/Column.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Dennis\Seeder\Domain\Model;
2+
namespace TildBJ\Seeder\Domain\Model;
33

44
/***************************************************************
55
*
@@ -25,12 +25,12 @@
2525
*
2626
* This copyright notice MUST APPEAR in all copies of the script!
2727
***************************************************************/
28-
use Dennis\Seeder\Domain\Model\Column\OneToManyInterface;
28+
use TildBJ\Seeder\Domain\Model\Column\OneToManyInterface;
2929

3030
/**
3131
* Class Column
3232
*
33-
* @package Dennis\Seeder\Domain\Model\Column
33+
* @package TildBJ\Seeder\Domain\Model\Column
3434
*/
3535
abstract class Column implements ColumnInterface
3636
{

Classes/Domain/Model/Column/Check.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Dennis\Seeder\Domain\Model\Column;
2+
namespace TildBJ\Seeder\Domain\Model\Column;
33

44
/***************************************************************
55
*
@@ -25,12 +25,12 @@
2525
*
2626
* This copyright notice MUST APPEAR in all copies of the script!
2727
***************************************************************/
28-
use Dennis\Seeder\Domain\Model\Column;
28+
use TildBJ\Seeder\Domain\Model\Column;
2929

3030
/**
3131
* Class Check
3232
*
33-
* @package Dennis\Seeder\Domain\Model\Check
33+
* @package TildBJ\Seeder\Domain\Model\Check
3434
*/
3535
class Check extends Column implements CheckInterface
3636
{

Classes/Domain/Model/Column/CheckInterface.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Dennis\Seeder\Domain\Model\Column;
2+
namespace TildBJ\Seeder\Domain\Model\Column;
33

44
/***************************************************************
55
*
@@ -25,12 +25,12 @@
2525
*
2626
* This copyright notice MUST APPEAR in all copies of the script!
2727
***************************************************************/
28-
use Dennis\Seeder\Domain\Model\ColumnInterface;
28+
use TildBJ\Seeder\Domain\Model\ColumnInterface;
2929

3030
/**
3131
* Interface CheckInterface
3232
*
33-
* @package Dennis\Seeder\Domain\Model\Column\CheckInterface
33+
* @package TildBJ\Seeder\Domain\Model\Column\CheckInterface
3434
*/
3535
interface CheckInterface extends ColumnInterface
3636
{

Classes/Domain/Model/Column/Group.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Dennis\Seeder\Domain\Model\Column;
2+
namespace TildBJ\Seeder\Domain\Model\Column;
33

44
/***************************************************************
55
*
@@ -25,12 +25,12 @@
2525
*
2626
* This copyright notice MUST APPEAR in all copies of the script!
2727
***************************************************************/
28-
use Dennis\Seeder\Domain\Model\Column;
28+
use TildBJ\Seeder\Domain\Model\Column;
2929

3030
/**
3131
* Class Group
3232
*
33-
* @package Dennis\Seeder\Domain\Model\Group
33+
* @package TildBJ\Seeder\Domain\Model\Group
3434
*/
3535
class Group extends Column implements GroupInterface
3636
{

Classes/Domain/Model/Column/GroupInterface.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Dennis\Seeder\Domain\Model\Column;
2+
namespace TildBJ\Seeder\Domain\Model\Column;
33

44
/***************************************************************
55
*
@@ -25,12 +25,12 @@
2525
*
2626
* This copyright notice MUST APPEAR in all copies of the script!
2727
***************************************************************/
28-
use Dennis\Seeder\Domain\Model\ColumnInterface;
28+
use TildBJ\Seeder\Domain\Model\ColumnInterface;
2929

3030
/**
3131
* Interface GroupInterface
3232
*
33-
* @package Dennis\Seeder\Domain\Model\Column\GroupInterface
33+
* @package TildBJ\Seeder\Domain\Model\Column\GroupInterface
3434
*/
3535
interface GroupInterface extends ColumnInterface
3636
{

Classes/Domain/Model/Column/Inline.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Dennis\Seeder\Domain\Model\Column;
2+
namespace TildBJ\Seeder\Domain\Model\Column;
33

44
/***************************************************************
55
*
@@ -25,12 +25,12 @@
2525
*
2626
* This copyright notice MUST APPEAR in all copies of the script!
2727
***************************************************************/
28-
use Dennis\Seeder\Domain\Model\Column;
28+
use TildBJ\Seeder\Domain\Model\Column;
2929

3030
/**
3131
* Class Inline
3232
*
33-
* @package Dennis\Seeder\Domain\Model\Inline
33+
* @package TildBJ\Seeder\Domain\Model\Inline
3434
*/
3535
class Inline extends Column implements InlineInterface
3636
{

Classes/Domain/Model/Column/InlineInterface.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Dennis\Seeder\Domain\Model\Column;
2+
namespace TildBJ\Seeder\Domain\Model\Column;
33

44
/***************************************************************
55
*
@@ -29,7 +29,7 @@
2929
/**
3030
* Interface InlineInterface
3131
*
32-
* @package Dennis\Seeder\Domain\Model\Column\InlineInterface
32+
* @package TildBJ\Seeder\Domain\Model\Column\InlineInterface
3333
*/
3434
interface InlineInterface extends OneToManyInterface
3535
{

0 commit comments

Comments
 (0)