Skip to content

Commit

Permalink
update docblocks
Browse files Browse the repository at this point in the history
- `assignEntryPointFromBatch()` does not return anything
- `store()` and `destroy()` do not return anything
  • Loading branch information
browner12 committed Oct 23, 2018
1 parent fd20a8f commit 25c3e9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Http/Controllers/MonitoredTagController.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function index()
* Begin monitoring the given tag.
*
* @param \Illuminate\Http\Request $request
* @return Response
* @return void
*/
public function store(Request $request)
{
Expand All @@ -53,7 +53,7 @@ public function store(Request $request)
* Stop monitoring the given tag.
*
* @param \Illuminate\Http\Request $request
* @return Response
* @return void
*/
public function destroy(Request $request)
{
Expand Down
2 changes: 1 addition & 1 deletion src/IncomingDumpEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function isDump()
* Assign entry point parameters from the given batch entries.
*
* @param array $batch
* @return $this
* @return void
*/
public function assignEntryPointFromBatch(array $batch)
{
Expand Down

0 comments on commit 25c3e9d

Please sign in to comment.