Update core 8.3.0
This commit is contained in:
parent
da7a7918f8
commit
cd7a898e66
6144 changed files with 132297 additions and 87747 deletions
|
@ -402,7 +402,7 @@ class StaticReflectionClass extends ReflectionClass
|
|||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function newInstanceArgs(array $args = array())
|
||||
public function newInstanceArgs(array $args = [])
|
||||
{
|
||||
throw new ReflectionException('Method not implemented');
|
||||
}
|
||||
|
|
|
@ -69,18 +69,18 @@ class StaticReflectionParser implements ReflectionProviderInterface
|
|||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $useStatements = array();
|
||||
protected $useStatements = [];
|
||||
|
||||
/**
|
||||
* The docComment of the class.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $docComment = array(
|
||||
protected $docComment = [
|
||||
'class' => '',
|
||||
'property' => array(),
|
||||
'method' => array()
|
||||
);
|
||||
'property' => [],
|
||||
'method' => []
|
||||
];
|
||||
|
||||
/**
|
||||
* The name of the class this class extends, if any.
|
||||
|
|
|
@ -91,7 +91,7 @@ class StaticReflectionProperty extends ReflectionProperty
|
|||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public static function export ($class, $name, $return = false)
|
||||
public static function export($class, $name, $return = false)
|
||||
{
|
||||
throw new ReflectionException('Method not implemented');
|
||||
}
|
||||
|
@ -155,7 +155,7 @@ class StaticReflectionProperty extends ReflectionProperty
|
|||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function setAccessible ($accessible)
|
||||
public function setAccessible($accessible)
|
||||
{
|
||||
throw new ReflectionException('Method not implemented');
|
||||
}
|
||||
|
@ -163,7 +163,7 @@ class StaticReflectionProperty extends ReflectionProperty
|
|||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function setValue ($object, $value = null)
|
||||
public function setValue($object, $value = null)
|
||||
{
|
||||
throw new ReflectionException('Method not implemented');
|
||||
}
|
||||
|
|
Reference in a new issue