Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
wujunze committed Jul 1, 2019
1 parent 0e2c4f4 commit ee67b74
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 17 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -6,3 +6,4 @@ phpunit.xml
composer.lock
.php_cs.cache
.hg
.phpunit.result.cache
2 changes: 1 addition & 1 deletion .php_cs
@@ -1,6 +1,6 @@
<?php

This file is part of the php-lisp/php-lisp.
$header = <<<EOF
This file is part of the php-geo package.
Expand Down
1 change: 0 additions & 1 deletion .phpunit.result.cache

This file was deleted.

16 changes: 11 additions & 5 deletions src/GeoInterface.php
@@ -1,10 +1,16 @@
<?php

<?php declare(strict_types=1);
/**
*
* This file is part of the php-geo package.
*
* (c) Panda <itwujunze@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/

namespace Wujunze\PhpGeo;


interface GeoInterface
{

}
}
16 changes: 11 additions & 5 deletions src/GeoManager.php
@@ -1,10 +1,16 @@
<?php

<?php declare(strict_types=1);
/**
*
* This file is part of the php-geo package.
*
* (c) Panda <itwujunze@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/

namespace Wujunze\PhpGeo;


class GeoManager implements GeoInterface
{

}
}
16 changes: 11 additions & 5 deletions tests/TestCase.php
@@ -1,14 +1,20 @@
<?php

<?php declare(strict_types=1);
/**
*
* This file is part of the php-geo package.
*
* (c) Panda <itwujunze@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/

namespace Wujunze\PhpGeo\Tests;


class TestCase extends \PHPUnit\Framework\TestCase
{
public function testOne()
{
$this->assertTrue(true);
}

}
}

0 comments on commit ee67b74

Please sign in to comment.