Skip to content

Commit

Permalink
fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Denoun committed Mar 11, 2016
1 parent 218d5b2 commit 769a682
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public function preSave(ConnectionInterface $con = null)
{
if (is_callable('parent::preSave')) {
return parent::preSave($con);
}
}
return true;
}

Expand All @@ -23,7 +23,7 @@ public function postSave(ConnectionInterface $con = null)
{
if (is_callable('parent::postSave')) {
parent::postSave($con);
}
}
}

<?php endif?>
Expand All @@ -37,7 +37,7 @@ public function preInsert(ConnectionInterface $con = null)
{
if (is_callable('parent::preInsert')) {
return parent::preInsert($con);
}
}
return true;
}

Expand All @@ -51,7 +51,7 @@ public function postInsert(ConnectionInterface $con = null)
{
if (is_callable('parent::postInsert')) {
parent::postInsert($con);
}
}
}

<?php endif?>
Expand All @@ -65,7 +65,7 @@ public function preUpdate(ConnectionInterface $con = null)
{
if (is_callable('parent::preUpdate')) {
return parent::preUpdate($con);
}
}
return true;
}

Expand All @@ -79,7 +79,7 @@ public function postUpdate(ConnectionInterface $con = null)
{
if (is_callable('parent::postUpdate')) {
parent::postUpdate($con);
}
}
}

<?php endif?>
Expand All @@ -93,7 +93,7 @@ public function preDelete(ConnectionInterface $con = null)
{
if (is_callable('parent::preDelete')) {
return parent::preDelete($con);
}
}
return true;
}

Expand All @@ -107,7 +107,7 @@ public function postDelete(ConnectionInterface $con = null)
{
if (is_callable('parent::postDelete')) {
parent::postDelete($con);
}
}
}

<?php endif?>
<?php endif?>

0 comments on commit 769a682

Please sign in to comment.