Skip to content

Commit

Permalink
Merge pull request JetBrains#878 from DaaGER/patch-2
Browse files Browse the repository at this point in the history
Fixed default value
  • Loading branch information
pestretsov authored Aug 1, 2020
2 parents 38df0a6 + 58e9df6 commit 8177349
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions standard/standard_4.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ function print_r ($expression, $return = null) {}
* </p>
* @return int the memory amount in bytes.
*/
function memory_get_usage ($real_usage = null) {}
function memory_get_usage ($real_usage = false) {}

/**
* Returns the peak of memory allocated by PHP
Expand All @@ -249,7 +249,7 @@ function memory_get_usage ($real_usage = null) {}
* </p>
* @return int the memory peak in bytes.
*/
function memory_get_peak_usage ($real_usage = null) {}
function memory_get_peak_usage ($real_usage = false) {}

/**
* Register a function for execution on shutdown
Expand Down

0 comments on commit 8177349

Please sign in to comment.