Open Journal Systems  3.3.0
Version.php
1 <?php
2 
3 namespace Guzzle\Common;
4 
8 class Version
9 {
10  const VERSION = '3.9.3';
11 
16  public static $emitWarnings = false;
17 
23  public static function warn($message)
24  {
25  if (self::$emitWarnings) {
26  trigger_error('Deprecation warning: ' . $message, E_USER_DEPRECATED);
27  }
28  }
29 }
Guzzle\Common\Version\warn
static warn($message)
Definition: Version.php:23
Guzzle\Common\Version\VERSION
const VERSION
Definition: Version.php:10
Guzzle\Common\Version
Definition: Version.php:8
Guzzle\Common\Version\$emitWarnings
static $emitWarnings
Definition: Version.php:16
Guzzle\Common
Definition: AbstractHasDispatcher.php:3