Skip to content

Commit

Permalink
Acceptance Testing in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
rotimi committed May 9, 2024
1 parent 770b522 commit e4c6301
Show file tree
Hide file tree
Showing 3 changed files with 1,376 additions and 120 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,16 @@ of this template application framework.
* All command-line examples assume you have changed directory to the root folder of your newly created application.
* Please submit an issue or a pull request if you find any issues with the documentation.

## Branching

These are the branches in this repository:

- **master:** contains code for the latest major version of this framework
- **slim-4-edition-versions-5.x:** contains code for the **5.x** version of this package (currently being synced with master until a newer version 6.x starts being developed on master)
- **slim-4-edition-versions-4.x:** contains code for the **4.x** version of this package. No new features, only bug fixes accepted.
- **slim-3-edition:** contains code for the **3.x** version of this package. No new features, only bug fixes accepted.
- **1.X:** contains code for the **1.x** version of this package. Abandoned.

## Issues

* Please submit an issue or a pull request if you find any problems with this skeleton app.
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/Hello.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function actionThere($first_name, $last_name): string {
return $this->renderLayout($this->layout_template_file_name, ['content'=>$view_str] );
}

public function actionForceHttp4xxOr5xx($http_code=400) {
public function actionForceHttpFourxxOrFivexx($http_code=400) {

$allowed_codes = [400, 401, 403, 404, 405, 410, 500, 501];

Expand Down
Loading

0 comments on commit e4c6301

Please sign in to comment.