Added missing @deprecated tags

This PR just adds a couple of @deprecated tags where they were missing, where IDE's like PHPStorm immediately alert the user that it's deprecated.
This commit is contained in:
Reece Alexander 2017-11-02 20:28:01 +13:00 committed by GitHub
parent f2c938a023
commit 9c836c0d3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,6 +25,7 @@ trait Configurable
/**
* Get inherited config value
*
* @deprecated 5.0 Use ->config()->get() instead
* @param string $name
* @return mixed
*/
@ -48,6 +49,7 @@ trait Configurable
/**
* Update the config value for a given property
*
* @deprecated 5.0 Use ->config()->set() instead
* @param string $name
* @param mixed $value
* @return $this