Skip to content

Commit

Permalink
Merge branch 'main' of github.com:inmanturbo/ecow
Browse files Browse the repository at this point in the history
  • Loading branch information
inmanturbo committed Aug 10, 2024
2 parents fbf4c49 + f53b819 commit 5c11fb3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to `ecow` will be documented in this file.

## v1.0.4 - 2024-08-09

### What's Changed

* Return null if no model by @inmanturbo in https://github.com/inmanturbo/ecow/pull/4

**Full Changelog**: https://github.com/inmanturbo/ecow/compare/v1.0.3...v1.0.4

## v1.0.3 - 2024-08-09

### What's Changed
Expand Down
2 changes: 1 addition & 1 deletion src/Ecow.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public function getModelGuid(mixed $model): string

public function retrieveModel(mixed $model): mixed
{
if(! $model) {
if (! $model) {
return null;
}

Expand Down

0 comments on commit 5c11fb3

Please sign in to comment.