Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add missing version number for @deprecated
  • Loading branch information
Iandenh committed May 16, 2017
1 parent 0584e63 commit 247880b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Console/Shell.php
Expand Up @@ -760,7 +760,7 @@ public function abort($message, $exitCode = self::CODE_ERROR)
* @throws \Cake\Console\Exception\StopException
* @return int Error code
* @link http://book.cakephp.org/3.0/en/console-and-shells.html#styling-output
* @deprecated Since 3.2.0. Use Shell::abort() instead.
* @deprecated 3.2.0 Use Shell::abort() instead.
*/
public function error($title, $message = null, $exitCode = self::CODE_ERROR)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Type/DateTimeType.php
Expand Up @@ -46,7 +46,7 @@ class DateTimeType extends Type implements TypeInterface
* class is constructed. After that use `useMutable()` or `useImmutable()` instead.
*
* @var string
* @deprecated Use DateTimeType::useMutable() or DateTimeType::useImmutable() instead.
* @deprecated 3.2.0 Use DateTimeType::useMutable() or DateTimeType::useImmutable() instead.
*/
public static $dateTimeClass = 'Cake\I18n\Time';

Expand Down
2 changes: 1 addition & 1 deletion src/Database/Type/DateType.php
Expand Up @@ -27,7 +27,7 @@ class DateType extends DateTimeType
* class is constructed. After that use `useMutable()` or `useImmutable()` instead.
*
* @var string
* @deprecated Use DateType::useMutable() or DateType::useImmutable() instead.
* @deprecated 3.2.0 Use DateType::useMutable() or DateType::useImmutable() instead.
*/
public static $dateTimeClass = 'Cake\I18n\Date';

Expand Down
4 changes: 2 additions & 2 deletions src/Event/Event.php
Expand Up @@ -88,7 +88,7 @@ public function __construct($name, $subject = null, $data = null)
*
* @param string $attribute Attribute name.
* @return mixed
* @deprecated Public properties will be removed.
* @deprecated 3.4.0 Public properties will be removed.
*/
public function __get($attribute)
{
Expand All @@ -109,7 +109,7 @@ public function __get($attribute)
* @param string $attribute Attribute name.
* @param mixed $value The value to set.
* @return void
* @deprecated Public properties will be removed.
* @deprecated 3.4.0 Public properties will be removed.
*/
public function __set($attribute, $value)
{
Expand Down

0 comments on commit 247880b

Please sign in to comment.