Skip to content

Commit 850f4b2

Browse files
committed
Release 2.0.1
1 parent 8bbdd39 commit 850f4b2

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

.semver

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
:major: 1
2+
:major: 2
33
:minor: 0
44
:patch: 1
55
:special: ''

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ This extension provides following features:
2525
1. Provide correct return type for `Cake\Mailer\Mailer::fetchTable()`
2626
1. Provide correct return type for `Cake\View\Cell::fetchTable()`
2727
1. Provide correct return type for `Cake\Console\Shell::helper()`
28+
1. Provide correct return type for `Cake\Console\ConsoleIo::helper()`
2829

2930
## Installation
3031

tests/test_app/Command/Helper/MyHeadingHelper.php

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

3+
/*
4+
* Copyright 2020 - 2021, Cake Development Corporation (https://www.cakedc.com)
5+
*
6+
* Licensed under The MIT License
7+
* Redistributions of files must retain the above copyright notice.
8+
*
9+
* @copyright Copyright 2020 - 2021, Cake Development Corporation (https://www.cakedc.com)
10+
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
11+
*/
12+
313
namespace App\Command\Helper;
414

515
use Cake\Console\Helper;

tests/test_app/Shell/Helper/BazBazHelper.php

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

3+
/*
4+
* Copyright 2020 - 2021, Cake Development Corporation (https://www.cakedc.com)
5+
*
6+
* Licensed under The MIT License
7+
* Redistributions of files must retain the above copyright notice.
8+
*
9+
* @copyright Copyright 2020 - 2021, Cake Development Corporation (https://www.cakedc.com)
10+
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
11+
*/
12+
313
namespace App\Shell\Helper;
414

515
use Cake\Console\Helper;

0 commit comments

Comments
 (0)