Skip to content

Commit

Permalink
Fix Text Case for php 7
Browse files Browse the repository at this point in the history
  • Loading branch information
klaravel committed Oct 19, 2016
1 parent 5d413db commit d48f244
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ cache:
directories:
- $HOME/.composer/cache

env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""

before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
Expand Down
4 changes: 2 additions & 2 deletions tests/BaseTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function setUp()

//$this->setUpDatabase();
$this->migrateTables();
$this->seed();
$this->seedData();

// Enabled query log for test
\DB::enableQueryLog();
Expand Down Expand Up @@ -56,7 +56,7 @@ public function migrateTables()
]);
}

public function seed()
public function seedData()
{
SettingModel::create(['key' => 'key1', 'value' => 'value1']);
SettingModel::create(['key' => 'key2', 'value' => 'value2']);
Expand Down

0 comments on commit d48f244

Please sign in to comment.