Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Silencer.php

class Silencer

Temporarily suppress PHP error reporting, usually warnings and below.

@author Niels Keurentjes <niels.keurentjes@omines.com>

Hierarchy

  • class \Composer\Util\Silencer

Expanded class hierarchy of Silencer

14 files declare their use of Silencer
Application.php in vendor/composer/composer/src/Composer/Console/Application.php
BaseIO.php in vendor/composer/composer/src/Composer/IO/BaseIO.php
BinaryInstaller.php in vendor/composer/composer/src/Composer/Installer/BinaryInstaller.php
BumpCommand.php in vendor/composer/composer/src/Composer/Command/BumpCommand.php
Cache.php in vendor/composer/composer/src/Composer/Cache.php

... See full list

File

vendor/composer/composer/src/Composer/Util/Silencer.php, line 20

Namespace

Composer\Util
View source
class Silencer {
    
    /**
     * @var int[] Unpop stack
     */
    private static $stack = [];
    
    /**
     * Suppresses given mask or errors.
     *
     * @param  int|null $mask Error levels to suppress, default value NULL indicates all warnings and below.
     * @return int      The old error reporting level.
     */
    public static function suppress(?int $mask = null) : int {
        if (!isset($mask)) {
            $mask = E_WARNING | E_NOTICE | E_USER_WARNING | E_USER_NOTICE | E_DEPRECATED | E_USER_DEPRECATED;
        }
        $old = error_reporting();
        self::$stack[] = $old;
        error_reporting($old & ~$mask);
        return $old;
    }
    
    /**
     * Restores a single state.
     */
    public static function restore() : void {
        if (!empty(self::$stack)) {
            error_reporting(array_pop(self::$stack));
        }
    }
    
    /**
     * Calls a specified function while silencing warnings and below.
     *
     * @param  callable   $callable Function to execute.
     * @param  mixed      $parameters Function to execute.
     * @throws \Exception Any exceptions from the callback are rethrown.
     * @return mixed      Return value of the callback.
     */
    public static function call(callable $callable, ...$parameters) {
        try {
            self::suppress();
            $result = $callable(...$parameters);
            self::restore();
            return $result;
        } catch (\Exception $e) {
            // Use a finally block for this when requirements are raised to PHP 5.5
            self::restore();
            throw $e;
        }
    }

}

Members

Title Sort descending Modifiers Object type Summary
Silencer::$stack private static property
Silencer::call public static function Calls a specified function while silencing warnings and below.
Silencer::restore public static function Restores a single state.
Silencer::suppress public static function Suppresses given mask or errors.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal