Skip to content

Commit 85ca1ae

Browse files
authored
Merge pull request #1 from andriusbaliutis/master
Add empty string as default value for $string property to avoid issue…
2 parents c76c37d + e22c66d commit 85ca1ae

File tree

2 files changed

+29
-29
lines changed

2 files changed

+29
-29
lines changed

composer.json

+28-28
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
{
2-
"name": "chroma-x/string-builder",
3-
"type": "library",
4-
"description": "A string builder library providing different string methods written in PHP.",
5-
"keywords": [
6-
"String",
7-
"Builder"
8-
],
9-
"homepage": "http://chroma-x.de/",
10-
"license": "MIT",
11-
"authors": [
12-
{
13-
"name": "Martin Brecht-Precht",
14-
"email": "[email protected]",
15-
"homepage": "http://chroma-x.de"
16-
}
17-
],
18-
"autoload": {
19-
"psr-4": {
20-
"ChromaX\\StringBuilder\\": "src/"
21-
}
22-
},
23-
"require": {
24-
"php": ">=5.4"
25-
},
26-
"require-dev": {
27-
"phpunit/phpunit": "~4.8",
28-
"codeclimate/php-test-reporter": "dev-master"
29-
}
2+
"name": "chroma-x/string-builder",
3+
"type": "library",
4+
"description": "A string builder library providing different string methods written in PHP.",
5+
"keywords": [
6+
"String",
7+
"Builder"
8+
],
9+
"homepage": "https://chroma-x.de/",
10+
"license": "MIT",
11+
"authors": [
12+
{
13+
"name": "Martin Brecht-Precht",
14+
"email": "[email protected]",
15+
"homepage": "https://chroma-x.de"
16+
}
17+
],
18+
"autoload": {
19+
"psr-4": {
20+
"ChromaX\\StringBuilder\\": "src/"
21+
}
22+
},
23+
"require": {
24+
"php": ">=5.4"
25+
},
26+
"require-dev": {
27+
"phpunit/phpunit": "~4.8",
28+
"codeclimate/php-test-reporter": "dev-master"
29+
}
3030
}

src/StringBuilder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class StringBuilder
1616
/**
1717
* @var string
1818
*/
19-
private $string;
19+
private $string = '';
2020

2121
/**
2222
* SimpleStringBuilder constructor

0 commit comments

Comments
 (0)