質問編集履歴
2
フォルダ構成の追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -91,4 +91,22 @@
|
|
91
91
|
$sc->Hello();
|
92
92
|
```
|
93
93
|
|
94
|
-
ご助言お願い致します。
|
94
|
+
ご助言お願い致します。
|
95
|
+
|
96
|
+
### 追記 フォルダ構成
|
97
|
+
```
|
98
|
+
.
|
99
|
+
├── Classes
|
100
|
+
│ └── Sample.php
|
101
|
+
├── composer.json
|
102
|
+
├── composer.lock
|
103
|
+
├── test.php
|
104
|
+
└── vendor
|
105
|
+
├── autoload.php
|
106
|
+
├── composer
|
107
|
+
├── monolog
|
108
|
+
├── phpoption
|
109
|
+
├── psr
|
110
|
+
├── symfony
|
111
|
+
└── vlucas
|
112
|
+
```
|
1
a
title
CHANGED
File without changes
|
body
CHANGED
@@ -11,10 +11,10 @@
|
|
11
11
|
```
|
12
12
|
$ php test.php
|
13
13
|
hoge
|
14
|
-
Fatal error: Uncaught Error: Class 'Sample\sampleClass' not found in /Users/
|
14
|
+
Fatal error: Uncaught Error: Class 'Sample\sampleClass' not found in /Users/username/php/ebay/test.php:19
|
15
15
|
Stack trace:
|
16
16
|
#0 {main}
|
17
|
-
thrown in /Users/
|
17
|
+
thrown in /Users/username/php/ebay/test.php on line 19
|
18
18
|
```
|
19
19
|
|
20
20
|
### やったこと
|