File manager - Edit - /home/ferretapmx/public_html/plugins/system/helixultimate/vendor/scssphp/scssphp/src/Logger/LoggerInterface.php
Back
<?php /** * SCSSPHP * * @copyright 2012-2020 Leaf Corcoran * * @license http://opensource.org/licenses/MIT MIT * * @link http://scssphp.github.io/scssphp */ namespace ScssPhp\ScssPhp\Logger; use ScssPhp\ScssPhp\Deprecation; use ScssPhp\ScssPhp\StackTrace\Trace; use SourceSpan\FileSpan; use SourceSpan\SourceSpan; /** * Interface implemented by loggers for warnings and debug messages. * * The official Sass implementation recommends that loggers report the * messages immediately rather than waiting for the end of the * compilation, to provide a better debugging experience when the * compilation does not end (error or infinite loop after the warning * for instance). */ interface LoggerInterface { /** * Emits a warning with the given message. * * If $span is passed, it's the location in the Sass source that generated * the warning. If $trace is passed, it's the Sass stack trace when the * warning was issued. * If $deprecation is non-null, it indicates that this is a deprecation * warning. Implementations should surface all this information to * the end user. */ public function warn(string $message, ?Deprecation $deprecation = null, ?FileSpan $span = null, ?Trace $trace = null): void; /** * Emits a debugging message associated with the given span. */ public function debug(string $message, SourceSpan $span): void; }
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.07 |
proxy
|
phpinfo
|
Settings