Skip to content

Commit

Permalink
add to observer stub
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jul 18, 2018
1 parent 40ba2ee commit 49ac5be
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/Illuminate/Foundation/Console/stubs/observer.stub
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,26 @@ class DummyClass
{
//
}

/**
* Handle the DocDummyModel "restored" event.
*
* @param \NamespacedDummyModel $dummyModel
* @return void
*/
public function restored(DummyModel $dummyModel)
{
//
}

/**
* Handle the DocDummyModel "force deleted" event.
*
* @param \NamespacedDummyModel $dummyModel
* @return void
*/
public function forceDeleted(DummyModel $dummyModel)
{
//
}
}

0 comments on commit 49ac5be

Please sign in to comment.