Skip to content

Commit 1a0005c

Browse files
author
Nicolas Oelgart
committed
Move files
1 parent f07a36e commit 1a0005c

File tree

97 files changed

+101
-228
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+101
-228
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/vendor/
2+
/composer.lock
23
tests/log
34
coverage.clover

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
],
2525
"autoload": {
2626
"psr-4": {
27-
"nicoSWD\\Rule\\": "src/nicoSWD/Rule"
27+
"nicoSWD\\Rule\\": "src"
2828
}
2929
},
3030
"autoload-dev": {

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.4/phpunit.xsd"
4-
bootstrap="src/nicoSWD/Rule/autoload.php"
4+
bootstrap="src/autoload.php"
55
backupGlobals="false"
66
convertErrorsToExceptions="true"
77
convertNoticesToExceptions="true"

src/nicoSWD/Rule/Compiler/CompilerFactory.php renamed to src/Compiler/CompilerFactory.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
<?php
2-
3-
declare(strict_types=1);
1+
<?php declare(strict_types=1);
42

53
/**
64
* @license http://opensource.org/licenses/mit-license.php MIT

src/nicoSWD/Rule/Compiler/Exception/MissingOperatorException.php renamed to src/Compiler/Exception/MissingOperatorException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22

33
/**
44
* @license http://opensource.org/licenses/mit-license.php MIT

src/nicoSWD/Rule/Compiler/StandardCompiler.php renamed to src/Compiler/StandardCompiler.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
<?php
2-
3-
declare(strict_types=1);
1+
<?php declare(strict_types=1);
42

53
/**
64
* @license http://opensource.org/licenses/mit-license.php MIT

src/nicoSWD/Rule/Evaluator/Evaluator.php renamed to src/Evaluator/Evaluator.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
<?php
2-
3-
declare(strict_types=1);
1+
<?php declare(strict_types=1);
42

53
/**
64
* @license http://opensource.org/licenses/mit-license.php MIT

0 commit comments

Comments
 (0)