質問編集履歴
1
「}」や「;」が無い状態で投稿しておりました。確認不足申し訳ございません。
title
CHANGED
File without changes
|
body
CHANGED
@@ -7,10 +7,11 @@
|
|
7
7
|
class Menu{
|
8
8
|
private $orderCount;
|
9
9
|
public function setOrderCount($orderCount) {
|
10
|
-
$this->orderCount=$orderCount
|
10
|
+
$this->orderCount=$orderCount;
|
11
11
|
}
|
12
|
+
}
|
12
13
|
|
13
|
-
$bread=
|
14
|
+
$bread= new Menu();
|
14
15
|
$bread->setOrderCount(4);
|
15
16
|
|
16
17
|
echo $bread->getOrderCount();
|