Function __global->is_substantial_release
Definitions
sources/version2.php
- Whether it is a substantial release (i.e. major new version).
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: bool
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $dotted | string | No | No | required parameter | N/A | N/A | Dotted version number |
Returns
- Whether it is
- Type: boolean
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Whether it is a substantial release (i.e. major new version).
*
* @param string $dotted Dotted version number
* @return boolean Whether it is
*/
function is_substantial_release(string $dotted) : bool
* Whether it is a substantial release (i.e. major new version).
*
* @param string $dotted Dotted version number
* @return boolean Whether it is
*/
function is_substantial_release(string $dotted) : bool

