Skip to content

Commit a9e7ad4

Browse files
committed
Changed PHPDoc version comment to PHP 7.0
1 parent 372abb2 commit a9e7ad4

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

App/Config.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Application configuration
77
*
8-
* PHP version 5.4
8+
* PHP version 7.0
99
*/
1010
class Config
1111
{

App/Controllers/Home.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Home controller
99
*
10-
* PHP version 5.4
10+
* PHP version 7.0
1111
*/
1212
class Home extends \Core\Controller
1313
{

App/Models/User.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Example user model
99
*
10-
* PHP version 5.4
10+
* PHP version 7.0
1111
*/
1212
class User extends \Core\Model
1313
{

Core/Controller.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Base controller
77
*
8-
* PHP version 5.4
8+
* PHP version 7.0
99
*/
1010
abstract class Controller
1111
{

Core/Error.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Error and exception handler
77
*
8-
* PHP version 5.4
8+
* PHP version 7.0
99
*/
1010
class Error
1111
{

Core/Model.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* Base model
1010
*
11-
* PHP version 5.4
11+
* PHP version 7.0
1212
*/
1313
abstract class Model
1414
{

Core/Router.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Router
77
*
8-
* PHP version 5.4
8+
* PHP version 7.0
99
*/
1010
class Router
1111
{

Core/View.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* View
77
*
8-
* PHP version 5.4
8+
* PHP version 7.0
99
*/
1010
class View
1111
{

public/index.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Front controller
55
*
6-
* PHP version 5.4
6+
* PHP version 7.0
77
*/
88

99
/**

0 commit comments

Comments
 (0)