You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The composer.json states that a version of php at 5.0 is required, but access modifiers exist on constants (i.e.) public const.
This is a feature that was added in php 7.1.
Example:
abstract class DOM implements Query, IteratorAggregate, Countable
{
/**
* The array of matches.
*/
protected $matches = [];
/**
* Default parser flags.
*
* These are flags that will be used if no global or local flags override them.
*
* @since 2.0
*/
public const DEFAULT_PARSER_FLAGS = null;
public const JS_CSS_ESCAPE_CDATA = '\\1';
public const JS_CSS_ESCAPE_CDATA_CCOMMENT = '/* \\1 */';
public const JS_CSS_ESCAPE_CDATA_DOUBLESLASH = '// \\1';
public const JS
The text was updated successfully, but these errors were encountered:
The composer.json states that a version of php at
5.0
is required, but access modifiers exist on constants (i.e.)public const
.This is a feature that was added in php 7.1.
Example:
The text was updated successfully, but these errors were encountered: