File tree 4 files changed +27
-1
lines changed
4 files changed +27
-1
lines changed Original file line number Diff line number Diff line change
1
+ github : [nyamsprod]
Original file line number Diff line number Diff line change 2
2
3
3
All Notable changes to ` PHP Domain Parser ` ** 5.x** series will be documented in this file
4
4
5
+ ## 5.7.1 - 2020-08-24
6
+
7
+ ### Added
8
+
9
+ - None
10
+
11
+ ### Fixed
12
+
13
+ - Cache throws when cache directory doesn't exist [ #280 ] ( https://github.com/jeremykendall/php-domain-parser/issues/280 )
14
+
15
+ ### Deprecated
16
+
17
+ - None
18
+
19
+ ### Removed
20
+
21
+ - None
22
+
5
23
## 5.7.0 - 2020-08-02
6
24
7
25
### Added
@@ -15,6 +33,7 @@ All Notable changes to `PHP Domain Parser` **5.x** series will be documented in
15
33
16
34
- Improve type hinting and return type by dropping EOL PHP versions support.
17
35
- Improve development environment by dropping EOL PHP versions support.
36
+ - Composer script
18
37
19
38
### Deprecated
20
39
Original file line number Diff line number Diff line change 23
23
"homepage" : " https://github.com/jeremykendall/php-domain-parser/graphs/contributors"
24
24
}
25
25
],
26
+ "funding" : [
27
+ {
28
+ "type" : " github" ,
29
+ "url" : " https://github.com/sponsors/nyamsprod"
30
+ }
31
+ ],
26
32
"bin" : [
27
33
" bin/update-psl"
28
34
],
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ public function __construct(string $cache_path = '')
83
83
{
84
84
if ('' === $ cache_path ) {
85
85
/** @var string $cache_path */
86
- $ cache_path = realpath (dirname (__DIR__ ).DIRECTORY_SEPARATOR .'data ' ) ;
86
+ $ cache_path = realpath (dirname (__DIR__ )) .DIRECTORY_SEPARATOR .'data ' ;
87
87
}
88
88
89
89
if (!file_exists ($ cache_path ) && file_exists (dirname ($ cache_path ))) {
You can’t perform that action at this time.
0 commit comments