Skip to content

Commit

Permalink
Config bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
zachleigh committed Nov 30, 2015
1 parent 42bfd2d commit 67a531f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "project",
"description": "A php Japanese language text analyzer and parser.",
"keywords": ["japanese", "language", "mecab", "furigana", "kanji", "romanji", "parse"],
"homepage": "https://github.com/zachleigh/limelight",
"homepage": "https://github.com/nihongodera/limelight",
"license": "MIT",
"authors": [
{
Expand Down
4 changes: 2 additions & 2 deletions src/Config/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ public function resetConfig()
{
if (function_exists('config') && config('limelight') !== null) {
$this->configFile = config('limelight');
} else {
$this->configFile = include dirname(__DIR__).'/config.php';
}

$this->configFile = include dirname(__DIR__).'/config.php';
}

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Limelight\tests;
namespace Limelight\Tests;

class TestCase extends \PHPUnit_Framework_TestCase
{
Expand Down

0 comments on commit 67a531f

Please sign in to comment.