Skip to content

Commit ea5e8ed

Browse files
committed
Merge pull request #57 from CliffBrown/patch-2
Return the response from the save
2 parents fe4b3c8 + 63ea43b commit ea5e8ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tag.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function save(array $options = array())
3434
$normalizer = empty($normalizer) ? '\Conner\Tagging\TaggingUtil::slug' : $normalizer;
3535

3636
$this->slug = call_user_func($normalizer, $this->name);
37-
parent::save($options);
37+
return parent::save($options);
3838
} else {
3939
throw new \Exception('Tag Name is required');
4040
}

0 commit comments

Comments
 (0)