Laravel version update

Laravel version update
This commit is contained in:
Manish Verma
2018-08-06 18:48:58 +05:30
parent d143048413
commit 126fbb0255
13678 changed files with 1031482 additions and 778530 deletions

View File

@@ -1,23 +1,19 @@
<?php
<?php declare(strict_types=1);
namespace PhpParser;
class CommentTest extends \PHPUnit_Framework_TestCase
use PHPUnit\Framework\TestCase;
class CommentTest extends TestCase
{
public function testGetSet() {
$comment = new Comment('/* Some comment */', 1, 10);
$comment = new Comment('/* Some comment */', 1, 10, 2);
$this->assertSame('/* Some comment */', $comment->getText());
$this->assertSame('/* Some comment */', (string) $comment);
$this->assertSame(1, $comment->getLine());
$this->assertSame(10, $comment->getFilePos());
$comment->setText('/* Some other comment */');
$comment->setLine(10);
$this->assertSame('/* Some other comment */', $comment->getText());
$this->assertSame('/* Some other comment */', (string) $comment);
$this->assertSame(10, $comment->getLine());
$this->assertSame(2, $comment->getTokenPos());
}
/**
@@ -29,10 +25,10 @@ class CommentTest extends \PHPUnit_Framework_TestCase
}
public function provideTestReformatting() {
return array(
array('// Some text' . "\n", '// Some text'),
array('/* Some text */', '/* Some text */'),
array(
return [
['// Some text' . "\n", '// Some text'],
['/* Some text */', '/* Some text */'],
[
'/**
* Some text.
* Some more text.
@@ -41,8 +37,8 @@ class CommentTest extends \PHPUnit_Framework_TestCase
* Some text.
* Some more text.
*/'
),
array(
],
[
'/*
Some text.
Some more text.
@@ -51,30 +47,30 @@ class CommentTest extends \PHPUnit_Framework_TestCase
Some text.
Some more text.
*/'
),
array(
],
[
'/* Some text.
More text.
Even more text. */',
'/* Some text.
More text.
Even more text. */'
),
array(
],
[
'/* Some text.
More text.
Indented text. */',
'/* Some text.
More text.
Indented text. */',
),
],
// invalid comment -> no reformatting
array(
[
'hallo
world',
'hallo
world',
),
);
],
];
}
}
}