Skip to content

Commit 80f1110

Browse files
Merge branch 'release/0.2.1'
2 parents 32b968d + bafb4e1 commit 80f1110

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
66

77
## Unreleased
88

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+
915
## 0.2.0 (2018-07-26)
1016

1117
### Changed

src/BooleanDates.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function getAttribute($key)
6060
*
6161
* @return $this
6262
*/
63-
public function setAttribute($key, $value) : self
63+
public function setAttribute($key, $value)
6464
{
6565
if ($this->hasBooleanDate($key)) {
6666
$this->setBooleanDate($key, $value);

0 commit comments

Comments
 (0)