Skip to content

Commit

Permalink
[Issue #64]. Fixed file path directory separators in DB Seeders. (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurmechant authored and ziishaned committed Apr 3, 2017
1 parent d9b390d commit 7cd486b
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class IntegrationActionsTableSeeder extends Seeder
*
* @var string
*/
private $integrationActionsFilePath = 'database\seeds\Components\Integration\integration_actions.json';
private $integrationActionsFilePath = 'database/seeds/Components/Integration/integration_actions.json';

/**
* Run the database seeds.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class NotificationCategoryTableSeeder extends Seeder
*
* @var string
*/
private $notificationCategoriesFilePath = 'database\seeds\Components\Notification\notification_categories.json';
private $notificationCategoriesFilePath = 'database/seeds/Components/Notification/notification_categories.json';

/**
* Run the database seeds.
Expand Down
2 changes: 1 addition & 1 deletion database/seeds/Components/Page/PagesTableSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class PagesTableSeeder extends Seeder
*
* @var string
*/
private $pagesFilePath = 'database\seeds\Components\Page\pages.json';
private $pagesFilePath = 'database/seeds/Components/Page/pages.json';

/**
* Run the database seeds.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class PermissionsTableSeeder extends Seeder
*
* @var string
*/
private $permissionsFilePath = 'database\seeds\Components\Permission\permissions.json';
private $permissionsFilePath = 'database/seeds/Components/Permission/permissions.json';

/**
* Run the database seeds.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class RolePermissionsTableSeeder extends Seeder
*
* @var string
*/
private $rolePermissionsFilePath = 'database\seeds\Components\Permission\role_permissions.json';
private $rolePermissionsFilePath = 'database/seeds/Components/Permission/role_permissions.json';

/**
* Run the database seeds.
Expand Down
2 changes: 1 addition & 1 deletion database/seeds/Components/Role/RolesTableSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class RolesTableSeeder extends Seeder
*
* @var string
*/
private $rolesFilePath = 'database\seeds\Components\Role\roles.json';
private $rolesFilePath = 'database/seeds/Components/Role/roles.json';

/**
* Run the database seeds.
Expand Down
2 changes: 1 addition & 1 deletion database/seeds/Components/Space/SpacesTableSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class SpacesTableSeeder extends Seeder
*
* @var string
*/
private $spacesFilePath = 'database\seeds\Components\Space\spaces.json';
private $spacesFilePath = 'database/seeds/Components/Space/spaces.json';

/**
* Run the database seeds.
Expand Down
2 changes: 1 addition & 1 deletion database/seeds/Components/Team/InvitesTableSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class InvitesTableSeeder extends Seeder
*
* @var string
*/
private $invitationsFilePath = 'database\seeds\Components\Team\invitations.json';
private $invitationsFilePath = 'database/seeds/Components/Team/invitations.json';

/**
* Run the database seeds.
Expand Down
2 changes: 1 addition & 1 deletion database/seeds/Components/Team/TeamsTableSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class TeamsTableSeeder extends Seeder
*
* @var string
*/
private $teamsFilePath = 'database\seeds\Components\Team\teams.json';
private $teamsFilePath = 'database/seeds/Components/Team/teams.json';

/**
* Run the database seeds.
Expand Down
2 changes: 1 addition & 1 deletion database/seeds/Components/User/UsersRolesTableSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class UsersRolesTableSeeder extends Seeder
*
* @var string
*/
private $usersRolesFilePath = 'database\seeds\Components\User\users_roles.json';
private $usersRolesFilePath = 'database/seeds/Components/User/users_roles.json';

/**
* Run the database seeds.
Expand Down
2 changes: 1 addition & 1 deletion database/seeds/Components/User/UsersTableSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class UsersTableSeeder extends Seeder
*
* @var string
*/
private $usersFilePath = 'database\seeds\Components\User\users.json';
private $usersFilePath = 'database/seeds/Components/User/users.json';

/**
* Run the database seeds.
Expand Down
2 changes: 1 addition & 1 deletion database/seeds/Components/User/UsersTeamsTableSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class UsersTeamsTableSeeder extends Seeder
*
* @var string
*/
private $userTeamsFilePath = 'database\seeds\Components\User\user_teams.json';
private $userTeamsFilePath = 'database/seeds/Components/User/user_teams.json';

/**
* Run the database seeds.
Expand Down
2 changes: 1 addition & 1 deletion database/seeds/Components/Wiki/WikisTableSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class WikisTableSeeder extends Seeder
*
* @var string
*/
private $wikisFilePath = 'database\seeds\Components\Wiki\wikis.json';
private $wikisFilePath = 'database/seeds/Components/Wiki/wikis.json';

/**
* Run the database seeds.
Expand Down

0 comments on commit 7cd486b

Please sign in to comment.