File tree Expand file tree Collapse file tree 6 files changed +13
-12
lines changed
Expand file tree Collapse file tree 6 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 1212jobs :
1313 static-analysis :
1414 name : Static Analysis
15- runs-on : ubuntu-24.04
15+ runs-on : ubuntu-latest
1616
1717 steps :
1818 - name : " Checkout code"
2222 uses : " shivammathur/setup-php@v2"
2323 with :
2424 coverage : " none"
25- php-version : " 8.4 "
25+ php-version : " 8.0 "
2626 extensions : pdo, pdo_sqlite
2727
2828 - name : " Validate composer.json"
5151
5252 tests :
5353 name : " Tests ${{ matrix.php-version }} ${{ matrix.dependency-versions }}"
54- runs-on : ubuntu-24.04
54+ runs-on : ubuntu-latest
5555 needs : static-analysis
5656
5757 strategy :
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ protected function setUp(): void
1616 self ::bootKernel ([]);
1717 }
1818
19- private function testSecretsAreEncryptedInDatabase (string $ className )
19+ private function secretsAreEncryptedInDatabase (string $ className )
2020 {
2121 /** @var EntityManagerInterface $entityManager */
2222 $ entityManager = self ::$ container ->get ('doctrine.orm.entity_manager ' );
@@ -62,7 +62,7 @@ private function testSecretsAreEncryptedInDatabase(string $className)
6262 */
6363 public function testAnnotationSecretsAreEncryptedInDatabase (): void
6464 {
65- $ this ->testSecretsAreEncryptedInDatabase (Entity \Annotation \Secret::class);
65+ $ this ->secretsAreEncryptedInDatabase (Entity \Annotation \Secret::class);
6666 }
6767
6868 /**
@@ -73,6 +73,6 @@ public function testAnnotationSecretsAreEncryptedInDatabase(): void
7373 */
7474 public function testAttributeSecretsAreEncryptedInDatabase (): void
7575 {
76- $ this ->testSecretsAreEncryptedInDatabase (Entity \Attribute \Secret::class);
76+ $ this ->secretsAreEncryptedInDatabase (Entity \Attribute \Secret::class);
7777 }
7878}
Original file line number Diff line number Diff line change 1515 <server name =" SHELL_VERBOSITY" value =" -1" />
1616 <server name =" SYMFONY_PHPUNIT_REMOVE" value =" " />
1717 <server name =" SYMFONY_PHPUNIT_VERSION" value =" 9.5" />
18+ <env name =" SYMFONY_DEPRECATIONS_HELPER" value =" disabled" />
1819 </php >
1920
2021 <testsuites >
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ protected function setUp(): void
1616 self ::bootKernel ([]);
1717 }
1818
19- public function testSecretsAreEncryptedInDatabase ()
19+ public function secretsAreEncryptedInDatabase ()
2020 {
2121 /** @var EntityManagerInterface $entityManager */
2222 $ entityManager = self ::getContainer ()->get ('doctrine.orm.entity_manager ' );
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ protected function setUp(): void
1616 self ::bootKernel ([]);
1717 }
1818
19- private function testSecretsAreEncryptedInDatabase (string $ className )
19+ private function secretsAreEncryptedInDatabase (string $ className )
2020 {
2121 /** @var EntityManagerInterface $entityManager */
2222 $ entityManager = self ::getContainer ()->get ('doctrine.orm.entity_manager ' );
@@ -62,7 +62,7 @@ private function testSecretsAreEncryptedInDatabase(string $className)
6262 */
6363 public function testAnnotationSecretsAreEncryptedInDatabase ()
6464 {
65- $ this ->testSecretsAreEncryptedInDatabase (Entity \Annotation \Secret::class);
65+ $ this ->secretsAreEncryptedInDatabase (Entity \Annotation \Secret::class);
6666 }
6767
6868 /**
@@ -73,6 +73,6 @@ public function testAnnotationSecretsAreEncryptedInDatabase()
7373 */
7474 public function testAttributeSecretsAreEncryptedInDatabase ()
7575 {
76- $ this ->testSecretsAreEncryptedInDatabase (Entity \Attribute \Secret::class);
76+ $ this ->secretsAreEncryptedInDatabase (Entity \Attribute \Secret::class);
7777 }
7878}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ protected function setUp(): void
1616 self ::bootKernel ([]);
1717 }
1818
19- private function testSecretsAreEncryptedInDatabase (string $ className )
19+ private function secretsAreEncryptedInDatabase (string $ className )
2020 {
2121 /** @var EntityManagerInterface $entityManager */
2222 $ entityManager = self ::getContainer ()->get ('doctrine.orm.entity_manager ' );
@@ -64,6 +64,6 @@ private function testSecretsAreEncryptedInDatabase(string $className)
6464 */
6565 public function testAttributeSecretsAreEncryptedInDatabase ()
6666 {
67- $ this ->testSecretsAreEncryptedInDatabase (Entity \Attribute \Secret::class);
67+ $ this ->secretsAreEncryptedInDatabase (Entity \Attribute \Secret::class);
6868 }
6969}
You can’t perform that action at this time.
0 commit comments