Files
crm-ms1/Common/Util.php
2026-05-27 11:44:10 -04:00

10 lines
180 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace Common;
class Util {
public static function is_cli() {
return php_sapi_name() === 'cli';
}
// Ajoute ici dautres méthodes si nécessaire
}