Skip to content

Commit

Permalink
Merge pull request #105 from devsagency/dev
Browse files Browse the repository at this point in the history
Release 4.7.0
  • Loading branch information
philippebeck authored Apr 16, 2021
2 parents e58aab3 + c627fd2 commit 57f9aee
Show file tree
Hide file tree
Showing 7 changed files with 221 additions and 98 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "devsagency/pam",
"version": "4.6.1",
"version": "4.7.0",
"type": "library",
"description": "Php Adaptive Microframework",
"keywords": [
Expand Down Expand Up @@ -41,11 +41,11 @@
"ext-curl": "*",
"ext-json": "*",
"google/recaptcha": "^1.2.4",
"swiftmailer/swiftmailer": "^6.2.3",
"twig/twig": "^3.0.3"
"swiftmailer/swiftmailer": "^6.2.7",
"twig/twig": "^3.3.0"
},
"require-dev": {
"tracy/tracy": "^2.7.5"
"tracy/tracy": "^2.8.3"
},
"config": {
"platform": {
Expand Down
104 changes: 52 additions & 52 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions core/Controller/FrontController.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function __construct()
/**
* @return mixed|void
*/
public function parseUrl()
private function parseUrl()
{
$access = filter_input(INPUT_GET, ACCESS_KEY);

Expand All @@ -48,7 +48,7 @@ public function parseUrl()
/**
* @return mixed|void
*/
public function setController()
private function setController()
{
$this->controller = ucfirst(strtolower($this->controller)) . CTRL_NAME;
$this->controller = CTRL_PATH . $this->controller;
Expand All @@ -61,7 +61,7 @@ public function setController()
/**
* @return mixed|void
*/
public function setMethod()
private function setMethod()
{
$this->method = strtolower($this->method) . CTRL_METHOD_NAME;

Expand Down
Loading

0 comments on commit 57f9aee

Please sign in to comment.