@frontastic/common 2.48.2 → 2.48.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/composer.json +2 -2
- package/composer.lock +7552 -0
- package/package.json +1 -1
- package/vendor/sebastian/diff/tests/fixtures/.editorconfig +1 -0
- package/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_a.txt +1 -0
- package/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_b.txt +0 -0
- package/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/2_a.txt +35 -0
- package/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/2_b.txt +18 -0
- package/vendor/sebastian/diff/tests/fixtures/out/.editorconfig +1 -0
- package/vendor/sebastian/diff/tests/fixtures/out/.gitignore +2 -0
- package/vendor/sebastian/diff/tests/fixtures/patch.txt +9 -0
- package/vendor/sebastian/diff/tests/fixtures/patch2.txt +21 -0
- package/vendor/sebastian/diff/tests/fixtures/serialized_diff.bin +0 -0
- package/vendor/symfony/symfony/.github/psalm/.gitignore +4 -0
- package/vendor/symfony/symfony/.github/psalm/stubs/ForwardCompatTestTrait.php +38 -0
- package/vendor/symfony/symfony/.github/psalm/stubs/SetUpTearDownTrait.php +19 -0
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
root = true
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
a
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
root = true
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
diff --git a/Foo.php b/Foo.php
|
|
2
|
+
index abcdefg..abcdefh 100644
|
|
3
|
+
--- a/Foo.php
|
|
4
|
+
+++ b/Foo.php
|
|
5
|
+
@@ -20,4 +20,5 @@ class Foo
|
|
6
|
+
const ONE = 1;
|
|
7
|
+
const TWO = 2;
|
|
8
|
+
+ const THREE = 3;
|
|
9
|
+
const FOUR = 4;
|
|
10
|
+
|
|
11
|
+
@@ -320,4 +320,5 @@ class Foo
|
|
12
|
+
const A = 'A';
|
|
13
|
+
const B = 'B';
|
|
14
|
+
+ const C = 'C';
|
|
15
|
+
const D = 'D';
|
|
16
|
+
|
|
17
|
+
@@ -600,4 +600,5 @@ class Foo
|
|
18
|
+
public function doSomething() {
|
|
19
|
+
|
|
20
|
+
+ return 'foo';
|
|
21
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
/*
|
|
4
|
+
* This file is part of the Symfony package.
|
|
5
|
+
*
|
|
6
|
+
* (c) Fabien Potencier <fabien@symfony.com>
|
|
7
|
+
*
|
|
8
|
+
* For the full copyright and license information, please view the LICENSE
|
|
9
|
+
* file that was distributed with this source code.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
namespace Symfony\Component\Test;
|
|
13
|
+
|
|
14
|
+
use PHPUnit\Framework\TestCase;
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* @internal
|
|
18
|
+
*/
|
|
19
|
+
trait ForwardCompatTestTrait
|
|
20
|
+
{
|
|
21
|
+
private function doSetUp(): void
|
|
22
|
+
{
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
private function doTearDown(): void
|
|
26
|
+
{
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
protected function setUp(): void
|
|
30
|
+
{
|
|
31
|
+
$this->doSetUp();
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
protected function tearDown(): void
|
|
35
|
+
{
|
|
36
|
+
$this->doTearDown();
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
/*
|
|
4
|
+
* This file is part of the Symfony package.
|
|
5
|
+
*
|
|
6
|
+
* (c) Fabien Potencier <fabien@symfony.com>
|
|
7
|
+
*
|
|
8
|
+
* For the full copyright and license information, please view the LICENSE
|
|
9
|
+
* file that was distributed with this source code.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
namespace Symfony\Bridge\PhpUnit;
|
|
13
|
+
|
|
14
|
+
use PHPUnit\Framework\TestCase;
|
|
15
|
+
|
|
16
|
+
trait SetUpTearDownTrait
|
|
17
|
+
{
|
|
18
|
+
use Legacy\SetUpTearDownTraitForV8;
|
|
19
|
+
}
|