Back to Version class

Method isInDevelopmentState

public bool
isInDevelopmentState
()
Check if we are in development mode
Returns
  • bool
Since
  • 3.4.3
Class: Version
Project: Joomla

Method isInDevelopmentState - Source code

/**
 * Check if we are in development mode
 *
 * @return  boolean
 *
 * @since   3.4.3
 */
public function isInDevelopmentState() : bool
{
    return strtolower(self::DEV_STATUS) !== 'stable';
}