Skip to content

Commit 9188742

Browse files
committed
Fix style
1 parent 1e80ba5 commit 9188742

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

src/JsPhpize/Parser/Visitor.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace JsPhpize\Parser;
44

5-
use JsPhpize\Nodes\Block;
65
use JsPhpize\Nodes\Comment;
76

87
class Visitor extends ExpressionParser

tests/examples.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
use JsPhpize\JsPhpize;
44

5-
class ExamplesTest extends \PHPUnit_Framework_TestCase {
6-
7-
public function caseProvider() {
8-
5+
class ExamplesTest extends \PHPUnit_Framework_TestCase
6+
{
7+
public function caseProvider()
8+
{
99
$cases = array();
1010

1111
$examples = __DIR__ . '/../examples';
@@ -21,8 +21,8 @@ public function caseProvider() {
2121
/**
2222
* @dataProvider caseProvider
2323
*/
24-
public function testJsPhpizeGeneration($returnFile, $jsFile) {
25-
24+
public function testJsPhpizeGeneration($returnFile, $jsFile)
25+
{
2626
$jsPhpize = new JsPhpize();
2727
$expected = file_get_contents($returnFile);
2828
$result = $jsPhpize->render($jsFile);

0 commit comments

Comments
 (0)