Skip to content

Commit

Permalink
remove verbose 'null' from 'mixed' type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
m-vo committed Jul 13, 2020
1 parent daf0e04 commit a07ffbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core-bundle/src/Resources/contao/library/Contao/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ public static function has($strKey)
*
* @param string $strKey The short key
*
* @return mixed|null The configuration value
* @return mixed The configuration value
*/
public static function get($strKey)
{
Expand All @@ -373,8 +373,8 @@ public static function get($strKey)
/**
* Temporarily set a configuration value
*
* @param string $strKey The short key
* @param mixed|null $varValue The configuration value
* @param string $strKey The short key
* @param mixed $varValue The configuration value
*/
public static function set($strKey, $varValue)
{
Expand Down

0 comments on commit a07ffbf

Please sign in to comment.