Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyraul committed Nov 27, 2020
1 parent e5a34e9 commit 0c614ed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ before_install:
- phpenv config-rm xdebug.ini || echo "xdebug not available"

before_script:
- composer selfupdate
- composer selfupdate --1
- composer install --no-interaction --prefer-dist
- php vendor/bin/phpcs --config-set ignore_warnings_on_exit 1
- mv .jeeves.phpunit.yaml .jeeves.yaml
Expand Down
2 changes: 1 addition & 1 deletion src/Jeeves/Console/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class Application extends BaseApplication
{
const VERSION = '0.0.20';
const VERSION = '0.0.21';
const GEN = 'generate';

/**
Expand Down
5 changes: 4 additions & 1 deletion src/Jeeves/Console/Command/ModelCrud.php
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,10 @@ private function genRepo(\Mygento\Jeeves\Generators\Crud\Repository $generator,
'<?php' . PHP_EOL . PHP_EOL .
$generator->genRepository(
$fileName,
$this->getConverter()->getEntityName($this->module) . ' ' . $this->getConverter()->getEntityName($entityName),
implode(' ', [
$this->getConverter()->getEntityName($this->module),
$this->getConverter()->getEntityName($entityName),
]),
$namePath . 'Api\\' . $entityName . 'RepositoryInterface',
$namePath . 'Model\\ResourceModel\\' . $entityName,
$namePath . 'Model\\ResourceModel\\' . $entityName . '\\Collection',
Expand Down

0 comments on commit 0c614ed

Please sign in to comment.