1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

[feature/passwords] NULL should be null according to coding guidelines

PHPBB3-11610
This commit is contained in:
Marc Alexander 2013-07-05 23:59:09 +02:00
parent 8f863d1d49
commit dbd6d33e9f

View File

@ -89,7 +89,7 @@ class phpbb_crypto_manager
*/
protected function load_crypto_helper()
{
if ($this->helper === NULL)
if ($this->helper === null)
{
$this->helper = new phpbb_crypto_helper($this, $this->container);
}