@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontastic/common",
3
- "version": "2.48.2",
3
+ "version": "2.48.3",
4
4
  "devDependencies": {
5
5
  "@babel/core": "7.21.0",
6
6
  "@babel/plugin-proposal-class-properties": "^7.5.0",
@@ -0,0 +1 @@
1
+ root = true
@@ -0,0 +1,2 @@
1
+ # reset all ignore rules to create sandbox for integration test
2
+ !/**
@@ -0,0 +1,9 @@
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;
@@ -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
+ }
@@ -0,0 +1,4 @@
1
+ *
2
+ !.gitignore
3
+ !stubs
4
+ !stubs/*
@@ -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
+ }