Subiendo proyecto completo sin restricciones de git ignore

This commit is contained in:
Jose Sanchez
2023-08-17 11:44:02 -04:00
parent a0d4f5ba3b
commit 20f1c60600
19921 changed files with 2509159 additions and 45 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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