Rename the class from ReadEnvFile to DotEnv. Add everything to a composer json file so it can be published to composer repository. Add phpUnit tests for system
8 lines
98 B
PHP
8 lines
98 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node;
|
|
|
|
abstract class Scalar extends Expr
|
|
{
|
|
}
|