Laravel version update

Laravel version update
This commit is contained in:
Manish Verma
2018-08-06 18:48:58 +05:30
parent d143048413
commit 126fbb0255
13678 changed files with 1031482 additions and 778530 deletions

View File

@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
namespace PhpParser\Node\Scalar\MagicConst;
@@ -6,7 +6,11 @@ use PhpParser\Node\Scalar\MagicConst;
class Class_ extends MagicConst
{
public function getName() {
public function getName() : string {
return '__CLASS__';
}
}
public function getType() : string {
return 'Scalar_MagicConst_Class';
}
}

View File

@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
namespace PhpParser\Node\Scalar\MagicConst;
@@ -6,7 +6,11 @@ use PhpParser\Node\Scalar\MagicConst;
class Dir extends MagicConst
{
public function getName() {
public function getName() : string {
return '__DIR__';
}
}
public function getType() : string {
return 'Scalar_MagicConst_Dir';
}
}

View File

@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
namespace PhpParser\Node\Scalar\MagicConst;
@@ -6,7 +6,11 @@ use PhpParser\Node\Scalar\MagicConst;
class File extends MagicConst
{
public function getName() {
public function getName() : string {
return '__FILE__';
}
}
public function getType() : string {
return 'Scalar_MagicConst_File';
}
}

View File

@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
namespace PhpParser\Node\Scalar\MagicConst;
@@ -6,7 +6,11 @@ use PhpParser\Node\Scalar\MagicConst;
class Function_ extends MagicConst
{
public function getName() {
public function getName() : string {
return '__FUNCTION__';
}
}
public function getType() : string {
return 'Scalar_MagicConst_Function';
}
}

View File

@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
namespace PhpParser\Node\Scalar\MagicConst;
@@ -6,7 +6,11 @@ use PhpParser\Node\Scalar\MagicConst;
class Line extends MagicConst
{
public function getName() {
public function getName() : string {
return '__LINE__';
}
}
public function getType() : string {
return 'Scalar_MagicConst_Line';
}
}

View File

@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
namespace PhpParser\Node\Scalar\MagicConst;
@@ -6,7 +6,11 @@ use PhpParser\Node\Scalar\MagicConst;
class Method extends MagicConst
{
public function getName() {
public function getName() : string {
return '__METHOD__';
}
}
public function getType() : string {
return 'Scalar_MagicConst_Method';
}
}

View File

@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
namespace PhpParser\Node\Scalar\MagicConst;
@@ -6,7 +6,11 @@ use PhpParser\Node\Scalar\MagicConst;
class Namespace_ extends MagicConst
{
public function getName() {
public function getName() : string {
return '__NAMESPACE__';
}
}
public function getType() : string {
return 'Scalar_MagicConst_Namespace';
}
}

View File

@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
namespace PhpParser\Node\Scalar\MagicConst;
@@ -6,7 +6,11 @@ use PhpParser\Node\Scalar\MagicConst;
class Trait_ extends MagicConst
{
public function getName() {
public function getName() : string {
return '__TRAIT__';
}
}
public function getType() : string {
return 'Scalar_MagicConst_Trait';
}
}