Skip to content

Commit

Permalink
Release 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rochamarcelo committed Dec 27, 2021
1 parent 8bbdd39 commit 850f4b2
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .semver
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
:major: 1
:major: 2
:minor: 0
:patch: 1
:special: ''
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ This extension provides following features:
1. Provide correct return type for `Cake\Mailer\Mailer::fetchTable()`
1. Provide correct return type for `Cake\View\Cell::fetchTable()`
1. Provide correct return type for `Cake\Console\Shell::helper()`
1. Provide correct return type for `Cake\Console\ConsoleIo::helper()`

## Installation

Expand Down
10 changes: 10 additions & 0 deletions tests/test_app/Command/Helper/MyHeadingHelper.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* Copyright 2020 - 2021, Cake Development Corporation (https://www.cakedc.com)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2020 - 2021, Cake Development Corporation (https://www.cakedc.com)
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

namespace App\Command\Helper;

use Cake\Console\Helper;
Expand Down
10 changes: 10 additions & 0 deletions tests/test_app/Shell/Helper/BazBazHelper.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* Copyright 2020 - 2021, Cake Development Corporation (https://www.cakedc.com)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2020 - 2021, Cake Development Corporation (https://www.cakedc.com)
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/

namespace App\Shell\Helper;

use Cake\Console\Helper;
Expand Down

0 comments on commit 850f4b2

Please sign in to comment.