You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+5-6
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Contributing to PHP Simple String Builder
1
+
# Contributing to PHP String Builder
2
2
3
3
## About
4
4
@@ -81,21 +81,21 @@ We’ve found that test-first development really helps make features better arch
81
81
82
82
## Full example
83
83
84
-
Here’s an example workflow for `php-simple-string-builder` hosted on Github, which is currently in version 1.0.2. Your username is `yourname` and you’re submitting a basic bugfix.
84
+
Here’s an example workflow for `php-string-builder` hosted on Github, which is currently in version 1.0.2. Your username is `yourname` and you’re submitting a basic bugfix.
85
85
86
86
### Preparing your Fork
87
87
88
-
- Hit ‘fork’ on Github, creating e.g. `yourname/php-simple-string-builder`
88
+
- Hit ‘fork’ on Github, creating e.g. `yourname/php-string-builder`
- Visit Github, click handy “Pull request” button that it will make upon noticing your new branch.
122
122
- In the description field, write down issue number (if submitting code fixing an existing issue) or describe the issue + your fix (if submitting a wholly new bugfix).
123
123
- Hit ‘submit’! And please be patient - the maintainers will get to you when they can.
use Markenwerk\SimpleStringBuilder\SimpleStringBuilder;
35
+
use Markenwerk\StringBuilder\StringBuilder;
36
36
37
-
$builder = new SimpleStringBuilder();
37
+
$builder = new StringBuilder();
38
38
$builder
39
39
->append('a')
40
40
->append(12)
@@ -75,8 +75,8 @@ Resulting string length is "5" characters
75
75
## Contribution
76
76
77
77
Contributing to our projects is always very appreciated.
78
-
**But: please follow the contribution guidelines written down in the [CONTRIBUTING.md](https://github.com/markenwerk/php-simple-string-builder/blob/master/CONTRIBUTING.md) document.**
78
+
**But: please follow the contribution guidelines written down in the [CONTRIBUTING.md](https://github.com/markenwerk/php-string-builder/blob/master/CONTRIBUTING.md) document.**
79
79
80
80
## License
81
81
82
-
PHP Simple String Builder is under the MIT license.
0 commit comments