Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
roshedgostarandev1 committed Dec 7, 2019
1 parent 2153439 commit 8d2c4e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
10 changes: 5 additions & 5 deletions src/Abstracts/RepositoryAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function getFillable()
* Create new item and store it
*
* @param array $data
*
*
* @return mixed
*/
public function create(array $data)
Expand All @@ -47,7 +47,7 @@ public function create(array $data)
* Find item using its id.
*
* @param $id
*
*
* @return mixed
*/
public function find($id)
Expand All @@ -60,7 +60,7 @@ public function find($id)
*
* @param $model
* @param array $data
*
*
* @return mixed
*/
public function update($model, array $data)
Expand All @@ -78,7 +78,7 @@ public function update($model, array $data)
* Delete item.
*
* @param $model
*
*
* @return mixed
*/
public function delete($model)
Expand Down Expand Up @@ -109,7 +109,7 @@ public function makeModel()
*
* @param $method
* @param $arguments
*
*
* @return mixed
*/
public function __call($method, $arguments)
Expand Down
3 changes: 1 addition & 2 deletions src/Facade/TokenBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
/**
* Class TokenBuilder
*
* @package Shetabit\TokenBuilder\Facade
* @see \Shetabit\TokenBuilder\Token
* @see \Shetabit\TokenBuilder\Builder
*/
class TokenBuilder extends Facade
{
Expand Down

0 comments on commit 8d2c4e5

Please sign in to comment.