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 32b968d + bafb4e1 commit 80f1110Copy full SHA for 80f1110
CHANGELOG.md
@@ -6,6 +6,12 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
6
7
## Unreleased
8
9
+## 0.2.1 (2018-07-26)
10
+
11
+### Fixed
12
13
+- Remove `self` return type hint (conflicted when returning `null` during an Artisan command)
14
15
## 0.2.0 (2018-07-26)
16
17
### Changed
src/BooleanDates.php
@@ -60,7 +60,7 @@ public function getAttribute($key)
60
*
61
* @return $this
62
*/
63
- public function setAttribute($key, $value) : self
+ public function setAttribute($key, $value)
64
{
65
if ($this->hasBooleanDate($key)) {
66
$this->setBooleanDate($key, $value);
0 commit comments