Skip to content

Commit

Permalink
Update config writer files with correct namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
bennothommo committed Aug 1, 2022
1 parent 87009af commit 4ef95b4
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"twig/twig": "~3.0",
"wikimedia/less.php": "~3.0",
"wikimedia/minify": "~2.2",
"winter/laravel-config-writer": "^1.0.0"
"winter/laravel-config-writer": "^1.0.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5.8",
Expand Down
2 changes: 1 addition & 1 deletion src/Parse/EnvFile.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php namespace Winter\Storm\Parse;

use Winter\LaravelConfig\EnvFile as BaseEnvFile;
use Winter\LaravelConfigWriter\EnvFile as BaseEnvFile;

class EnvFile extends BaseEnvFile
{
Expand Down
2 changes: 1 addition & 1 deletion src/Parse/PHP/ArrayFile.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php namespace Winter\Storm\Parse\PHP;

use Winter\LaravelConfig\ArrayFile as BaseArrayFile;
use Winter\LaravelConfigWriter\ArrayFile as BaseArrayFile;

class ArrayFile extends BaseArrayFile
{
Expand Down
2 changes: 1 addition & 1 deletion src/Parse/PHP/PHPConstant.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php namespace Winter\Storm\Parse\PHP;

use Winter\LaravelConfig\Parser\PHPConstant as BasePHPConstant;
use Winter\LaravelConfigWriter\Parser\PHPConstant as BasePHPConstant;

class PHPConstant extends BasePHPConstant
{
Expand Down
2 changes: 1 addition & 1 deletion src/Parse/PHP/PHPFunction.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php namespace Winter\Storm\Parse\PHP;

use Winter\LaravelConfig\Parser\PHPFunction as BasePHPFunction;
use Winter\LaravelConfigWriter\Parser\PHPFunction as BasePHPFunction;

class PHPFunction extends BasePHPFunction
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Parse/ArrayFileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ public function testWriteIllegalOffset()
$file = __DIR__ . '/../fixtures/parse/arrayfile/empty.php';
$arrayFile = ArrayFile::open($file);

$this->expectException(\Winter\LaravelConfig\Exceptions\ConfigWriterException::class);
$this->expectException(\Winter\LaravelConfigWriter\Exceptions\ConfigWriterException::class);

$arrayFile->set([
'w.i.n.t.e.r' => 'Winter CMS',
Expand Down
2 changes: 0 additions & 2 deletions tests/tmp/.gitignore

This file was deleted.

0 comments on commit 4ef95b4

Please sign in to comment.