77 *
88 * For the full copyright and license information, please view the LICENSE
99 * file that was distributed with this source code.
10+ *
11+ * @phpcs:disable PSR1.Methods.CamelCapsMethodName.NotCamelCaps
1012 */
1113
1214namespace Josantonius \Session \Tests ;
@@ -30,7 +32,7 @@ public function setUp(): void
3032 /**
3133 * @runInSeparateProcess
3234 */
33- public function testShouldPullAttributeAndReturnTheValueIfExists (): void
35+ public function test_should_pull_attribute_and_return_the_value_if_exists (): void
3436 {
3537 $ this ->session ->start ();
3638
@@ -44,7 +46,7 @@ public function testShouldPullAttributeAndReturnTheValueIfExists(): void
4446 /**
4547 * @runInSeparateProcess
4648 */
47- public function testShouldReturnDefaultValueIfAttributeNotExists (): void
49+ public function test_should_return_default_value_if_attribute_not_exists (): void
4850 {
4951 $ this ->session ->start ();
5052
@@ -54,7 +56,7 @@ public function testShouldReturnDefaultValueIfAttributeNotExists(): void
5456 /**
5557 * @runInSeparateProcess
5658 */
57- public function testShouldReturnCustomDefaultValueIfAttributeNotExists (): void
59+ public function test_should_return_custom_default_value_if_attribute_not_exists (): void
5860 {
5961 $ this ->session ->start ();
6062
@@ -64,7 +66,7 @@ public function testShouldReturnCustomDefaultValueIfAttributeNotExists(): void
6466 /**
6567 * @runInSeparateProcess
6668 */
67- public function testShouldFailIfSessionIsUnstarted ()
69+ public function test_should_fail_if_session_is_unstarted ()
6870 {
6971 $ this ->expectException (SessionNotStartedException::class);
7072
@@ -74,7 +76,7 @@ public function testShouldFailIfSessionIsUnstarted()
7476 /**
7577 * @runInSeparateProcess
7678 */
77- public function testShouldBeAvailableFromTheFacade (): void
79+ public function test_should_be_available_from_the_facade (): void
7880 {
7981 $ facade = new SessionFacade ();
8082
0 commit comments