We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 94e57bb + 9686188 commit c043bf2Copy full SHA for c043bf2
README.md
@@ -62,11 +62,11 @@ Testing code developed with the **ActiveRecord** pattern. Does the use of the Ac
62
``` php
63
<?php
64
class UserService {
65
- function createUserByName($name)
+ function createUserByName($name) {
66
$user = new User;
67
$user->setName($name);
68
$user->save();
69
- }
+ }
70
}
71
?>
72
```
@@ -149,7 +149,7 @@ No PECL extensions is required. The [Go! AOP](http://go.aopphp.com/) library doe
149
150
## Requirements
151
152
-PHP >= 5.4 + [Go! AOP Requirements](https://github.com/goaop/framework#requirements)
+PHP >= 5.6 + [Go! AOP Requirements](https://github.com/goaop/framework#requirements)
153
154
## Installation
155
0 commit comments