Skip to content

Commit a8311ce

Browse files
committed
updated
1 parent 561b9d7 commit a8311ce

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
},
2828
"autoload": {
2929
"psr-4": {
30-
"CodeeshopOc\\DocumentPHP\\": "src/"
30+
"DocumentPHP\\": "src/DocumentPHP/"
3131
}
3232
},
3333
"autoload-dev": {
3434
"psr-4": {
35-
"CodeeshopOc\\DocumentPHP\\Tests\\": "tests/"
35+
"DocumentPHP\\Tests\\": "tests/"
3636
}
3737
},
3838
"scripts": {

src/FetchFiles.php src/DocumentPHP/FetchFiles.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22

3-
namespace CodeeshopOc\DocumentPHP;
3+
namespace DocumentPHP;
44

5-
include_once '/opt/lampp/htdocs/myshop1/system/engine/controller.php';
5+
include_once getcwd() . '../../../../system/engine/controller.php';
66

77
error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING);
88

99
class FetchFiles {
1010
public $data = [];
11-
public $destination_path = '/opt/lampp/htdocs/myshop1/catalog/controller/api/';
11+
public $destination_path = getcwd() . '../../../../catalog/controller/api/';
1212

1313
function rrmdir($dir) {
1414
// return;

0 commit comments

Comments
 (0)