Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
calebporzio committed Aug 1, 2019
1 parent 7c5d9c8 commit d4170ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Concerns/InteractsWithProperties.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function setPropertyValue($name, $value)
{
$propertyName = $this->beforeFirstDot($name);

// @todo: this i fired even if a property isn't present at all which is confusing.
// @todo: this is fired even if a property isn't present at all which is confusing.
throw_unless($this->propertyIsPublicAndNotDefinedOnBaseClass($propertyName), ProtectedPropertyBindingException::class);

if ($this->containsDots($name)) {
Expand Down

0 comments on commit d4170ae

Please sign in to comment.