Skip to content

Commit 5a2716e

Browse files
authoredSep 22, 2023
namespace correction (#40)
Signed-off-by: rahul <rcsofttech85@gmail.com>
1 parent 8f819da commit 5a2716e

26 files changed

+488
-387
lines changed
 

‎bin/view-csv

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
require 'vendor/autoload.php';
55

6-
use rcsofttech85\FileHandler\CsvFileHandler;
7-
use rcsofttech85\FileHandler\DI\ServiceContainer;
8-
use rcsofttech85\FileHandler\Exception\FileHandlerException;
6+
use Rcsofttech85\FileHandler\CsvFileHandler;
7+
use Rcsofttech85\FileHandler\DependencyInjection\ServiceContainer;
8+
use Rcsofttech85\FileHandler\Exception\FileHandlerException;
99
use Symfony\Component\Console\Command\Command;
1010
use Symfony\Component\Console\Input\InputArgument;
1111
use Symfony\Component\Console\Input\InputInterface;

‎bin/view-json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env php
22
<?php
33

4-
use rcsofttech85\FileHandler\DI\ServiceContainer;
5-
use rcsofttech85\FileHandler\Exception\FileHandlerException;
6-
use rcsofttech85\FileHandler\JsonFileHandler;
4+
use Rcsofttech85\FileHandler\DependencyInjection\ServiceContainer;
5+
use Rcsofttech85\FileHandler\Exception\FileHandlerException;
6+
use Rcsofttech85\FileHandler\JsonFileHandler;
77
use Symfony\Component\Console\Command\Command;
88
use Symfony\Component\Console\Input\InputArgument;
99
use Symfony\Component\Console\Input\InputInterface;

‎composer.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "MIT",
66
"autoload": {
77
"psr-4": {
8-
"rcsofttech85\\FileHandler\\": "src/"
8+
"Rcsofttech85\\FileHandler\\": "src/"
99
}
1010
},
1111
"authors": [
@@ -30,7 +30,8 @@
3030
"phpunit/phpunit": "^10",
3131
"squizlabs/php_codesniffer": "^3.7",
3232
"symfony/dotenv": "^6.3",
33-
"symfony/var-dumper": "^6.3"
33+
"symfony/var-dumper": "^6.3",
34+
"phpstan/phpstan": "^1.10"
3435
},
3536
"bin": [
3637
"bin/file-diff",

0 commit comments

Comments
 (0)
Failed to load comments.