Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyraul committed Jul 14, 2023
1 parent a89a420 commit bf4509d
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/grumphp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- '8.1'
# - '8.2'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
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 @@ -15,7 +15,7 @@ class Application extends BaseApplication
{
public const GEN = 'generate';
public const DS = DIRECTORY_SEPARATOR;
public const VERSION = '1.0.0-rc.3';
public const VERSION = '1.0.0-rc.4';
public const NAME = 'Jeeves';

/**
Expand Down
28 changes: 14 additions & 14 deletions src/Jeeves/Model/Acl.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ public function getChildren(): ?array
return $this->children;
}

// public function setId(string $id)
// {
// $this->id = $id;
// }
//
// public function setTitle(string $title)
// {
// $this->title = $title;
// }
//
// public function setChildren(array $children)
// {
// $this->children = $children;
// }
// public function setId(string $id)
// {
// $this->id = $id;
// }
//
// public function setTitle(string $title)
// {
// $this->title = $title;
// }
//
// public function setChildren(array $children)
// {
// $this->children = $children;
// }
}
2 changes: 1 addition & 1 deletion src/Jeeves/Model/Crud.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ private function generateEntities(array $entities, Module $mod): Crud\Result

$entity->setConfig($config);

if ($entity->hasApi()) {
if ($entity->hasGui()) {
$gui = true;
}

Expand Down

0 comments on commit bf4509d

Please sign in to comment.