Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
tanhongit committed Jan 8, 2025
2 parents ecaf77c + 3eebad9 commit 401ac0e
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 12 deletions.
4 changes: 3 additions & 1 deletion src/Facades/Base/Media/RvMedia.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,6 @@
*
* @see \Botble\Media\RvMedia
*/
class RvMedia extends BaseRvMedia {}
class RvMedia extends BaseRvMedia
{
}
4 changes: 3 additions & 1 deletion src/Http/Controllers/Base/BaseCategoryController.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@

use Botble\Blog\Http\Controllers\API\CategoryController as BotbleCategoryController;

class BaseCategoryController extends BotbleCategoryController {}
class BaseCategoryController extends BotbleCategoryController
{
}
4 changes: 3 additions & 1 deletion src/Http/Controllers/Base/BasePostController.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@

use Botble\Blog\Http\Controllers\API\PostController as BotblePostController;

class BasePostController extends BotblePostController {}
class BasePostController extends BotblePostController
{
}
4 changes: 3 additions & 1 deletion src/Http/Controllers/Base/BaseTagController.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@

use Botble\Blog\Http\Controllers\API\TagController as BotbleTagController;

class BaseTagController extends BotbleTagController {}
class BaseTagController extends BotbleTagController
{
}
4 changes: 3 additions & 1 deletion src/Http/Resources/Base/BaseListPostResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@

use Botble\Blog\Http\Resources\ListPostResource as BotbleListPostResource;

class BaseListPostResource extends BotbleListPostResource {}
class BaseListPostResource extends BotbleListPostResource
{
}
4 changes: 3 additions & 1 deletion src/Http/Responses/Base/BaseHttpResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@
* @method self setData(mixed $data)
* @method JsonResource|JsonResponse|RedirectResponse|self toApiResponse()
*/
class BaseHttpResponse extends BotbleBaseHttpResponse {}
class BaseHttpResponse extends BotbleBaseHttpResponse
{
}
4 changes: 3 additions & 1 deletion src/Models/Base/BaseCategory.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@

use Botble\Blog\Models\Category as BotbleCategory;

class BaseCategory extends BotbleCategory {}
class BaseCategory extends BotbleCategory
{
}
4 changes: 3 additions & 1 deletion src/Models/Base/BaseMediaFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@

use Botble\Media\Models\MediaFile as BotbleMedia;

class BaseMediaFile extends BotbleMedia {}
class BaseMediaFile extends BotbleMedia
{
}
4 changes: 3 additions & 1 deletion src/Models/Base/BasePost.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@

use Botble\Blog\Models\Post as BotblePost;

class BasePost extends BotblePost {}
class BasePost extends BotblePost
{
}
4 changes: 3 additions & 1 deletion src/Models/Base/BaseRole.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@

use Botble\ACL\Models\Role as BotbleRole;

class BaseRole extends BotbleRole {}
class BaseRole extends BotbleRole
{
}
4 changes: 3 additions & 1 deletion src/Models/Base/BaseTag.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@

use Botble\Blog\Models\Tag as BotbleTag;

class BaseTag extends BotbleTag {}
class BaseTag extends BotbleTag
{
}
4 changes: 3 additions & 1 deletion src/Models/Base/BaseUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@

use Botble\ACL\Models\User as BotbleUser;

class BaseUser extends BotbleUser {}
class BaseUser extends BotbleUser
{
}

0 comments on commit 401ac0e

Please sign in to comment.