Skip to content

Commit e50bc11

Browse files
committed
Update README.md
1 parent 3faaa55 commit e50bc11

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ phpcore is a tiny MVC framework to develop web-based applications in PHP. It's s
7070
use phpcore\core\Controller;
7171
7272
class HomeController extends Controller {
73-
public $message;
74-
public function process() {
75-
$this->message = "Welcome to PHP Core";
76-
$this->view();
77-
}
78-
}
73+
public $message;
74+
public function process() {
75+
$this->message = "Welcome to PHP Core";
76+
$this->view();
77+
}
78+
}
7979
?>
8080
```
8181
6. Create a view for HomeController [project folder]/src/server/views/Home.php

0 commit comments

Comments
 (0)