Skip to content

Commit

Permalink
Prepare Release 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bryannielsen authored and github-actions[bot] committed Jul 3, 2024
1 parent 9274ac0 commit bdecfcb
Show file tree
Hide file tree
Showing 16 changed files with 21 additions and 46 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [1.3.2] - 2024-07-03

### Fixed

- Bug where ExpressionEngine CLI command proxy was not recognizing optional arguments
Expand Down Expand Up @@ -230,7 +232,9 @@

- Initial Beta Release

[Unreleased]: https://github.com/ExpressionEngine/Coilpack/compare/1.3.1...HEAD
[Unreleased]: https://github.com/ExpressionEngine/Coilpack/compare/1.3.2...HEAD

[1.3.2]: https://github.com/ExpressionEngine/Coilpack/compare/1.3.1...1.3.2

[1.3.1]: https://github.com/ExpressionEngine/Coilpack/compare/1.3.0...1.3.1

Expand Down
1 change: 1 addition & 0 deletions src/Commands/EECliCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public function __construct()
// handled by the ExpressionEngine Command and not by Symfony/Laravel
if ($arg == '--help') {
$this->cli->info("Coilpack Usage: $this->signature");

return $this->handle();
}
}
Expand Down
4 changes: 1 addition & 3 deletions src/Contracts/CompositeFieldtype.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Expressionengine\Coilpack\Contracts;

interface CompositeFieldtype
{
}
interface CompositeFieldtype {}
4 changes: 1 addition & 3 deletions src/Contracts/Field.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Expressionengine\Coilpack\Contracts;

interface Field
{
}
interface Field {}
4 changes: 1 addition & 3 deletions src/Contracts/ListsGraphType.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Expressionengine\Coilpack\Contracts;

interface ListsGraphType
{
}
interface ListsGraphType {}
4 changes: 1 addition & 3 deletions src/Fieldtypes/Checkboxes.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Expressionengine\Coilpack\Fieldtypes;

class Checkboxes extends OptionFieldtype
{
}
class Checkboxes extends OptionFieldtype {}
4 changes: 1 addition & 3 deletions src/Fieldtypes/FileGrid.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Expressionengine\Coilpack\Fieldtypes;

class FileGrid extends Grid
{
}
class FileGrid extends Grid {}
4 changes: 1 addition & 3 deletions src/Fieldtypes/MultiSelect.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Expressionengine\Coilpack\Fieldtypes;

class MultiSelect extends OptionFieldtype
{
}
class MultiSelect extends OptionFieldtype {}
4 changes: 1 addition & 3 deletions src/Fieldtypes/Select.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Expressionengine\Coilpack\Fieldtypes;

class Select extends OptionFieldtype
{
}
class Select extends OptionFieldtype {}
4 changes: 1 addition & 3 deletions src/Fieldtypes/SelectableButtons.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Expressionengine\Coilpack\Fieldtypes;

class SelectableButtons extends OptionFieldtype
{
}
class SelectableButtons extends OptionFieldtype {}
8 changes: 2 additions & 6 deletions src/Models/Channel/ChannelEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -180,13 +180,9 @@ public function hiddenFields()
);
}

public function grids()
{
}
public function grids() {}

public function parents()
{
}
public function parents() {}

public function children()
{
Expand Down
4 changes: 1 addition & 3 deletions src/Models/Content/Content.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,4 @@
/**
* Content interface
*/
interface Content
{
}
interface Content {}
4 changes: 1 addition & 3 deletions src/Models/Content/Structure.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,4 @@
/**
* Content Structure interface
*/
interface Structure
{
}
interface Structure {}
4 changes: 1 addition & 3 deletions src/Models/Content/StructureModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@
/**
* Content Structure Model abstract
*/
abstract class StructureModel extends Model implements Structure
{
}
abstract class StructureModel extends Model implements Structure {}
4 changes: 1 addition & 3 deletions src/Routing/TemplateRoute.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@

class TemplateRoute
{
public function __construct()
{
}
public function __construct() {}

// public function templates($segment, $path, callable $callback = null)
// {
Expand Down
4 changes: 1 addition & 3 deletions src/View/Exceptions/TagNotFoundException.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Expressionengine\Coilpack\View\Exceptions;

class TagNotFoundException extends \Exception
{
}
class TagNotFoundException extends \Exception {}

0 comments on commit bdecfcb

Please sign in to comment.