Skip to content
This repository was archived by the owner on Mar 8, 2025. It is now read-only.

Fix config_path error. #93

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Bosnadev/Repositories/Providers/RepositoryProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class RepositoryProvider extends ServiceProvider
public function boot()
{
// Config path.
$config_path = __DIR__ . '/../../../config/repositories.php';
$config_path = __DIR__ . '/../../../../config/repositories.php';

// Publish config.
$this->publishes(
Expand Down Expand Up @@ -62,7 +62,7 @@ public function register()
$this->commands(['command.repository.make', 'command.criteria.make']);

// Config path.
$config_path = __DIR__ . '/../../../config/repositories.php';
$config_path = __DIR__ . '/../../../../config/repositories.php';

// Merge config.
$this->mergeConfigFrom(
Expand Down