Skip to content

Commit 63a96ab

Browse files
removed all the final keyword
1 parent 6db361a commit 63a96ab

21 files changed

+21
-21
lines changed

src/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Neo4j\QueryAPI\Objects\Bookmarks;
77
use Neo4j\QueryAPI\Enums\AccessMode;
88

9-
final class Configuration
9+
class Configuration
1010
{
1111
/**
1212
* Constructor for Configuration class.

src/Neo4jQueryAPI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use Psr\Http\Message\ResponseInterface;
1414
use Psr\Http\Client\RequestExceptionInterface;
1515

16-
final class Neo4jQueryAPI
16+
class Neo4jQueryAPI
1717
{
1818
public function __construct(
1919
private ClientInterface $client,

src/Objects/Bookmarks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use JsonSerializable;
66

7-
final class Bookmarks implements \Countable, JsonSerializable
7+
class Bookmarks implements \Countable, JsonSerializable
88
{
99
public function __construct(private array $bookmarks)
1010
{

src/Objects/ProfiledQueryPlan.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Neo4j\QueryAPI\Objects;
44

5-
final class ProfiledQueryPlan
5+
class ProfiledQueryPlan
66
{
77
public function __construct(
88
public readonly int $dbHits = 0,

src/Results/ResultRow.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @implements ArrayAccess<string, TValue>
1616
* @implements IteratorAggregate<string, TValue>
1717
*/
18-
final class ResultRow implements ArrayAccess, Countable, IteratorAggregate
18+
class ResultRow implements ArrayAccess, Countable, IteratorAggregate
1919
{
2020
/** @var array<string, TValue> */
2121
private array $data;

tests/Integration/AccessModesIntegrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Neo4j\QueryAPI\Enums\AccessMode;
99
use Neo4j\QueryAPI\Exception\Neo4jException;
1010

11-
final class AccessModesIntegrationTest extends TestCase
11+
class AccessModesIntegrationTest extends TestCase
1212
{
1313
use CreatesQueryAPI;
1414

tests/Integration/BookmarksIntegrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use PHPUnit\Framework\TestCase;
77
use Neo4j\QueryAPI\Objects\Bookmarks;
88

9-
final class BookmarksIntegrationTest extends TestCase
9+
class BookmarksIntegrationTest extends TestCase
1010
{
1111
use CreatesQueryAPI;
1212

tests/Integration/DataTypesIntegrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use Neo4j\QueryAPI\Tests\CreatesQueryAPI;
1515
use PHPUnit\Framework\TestCase;
1616

17-
final class DataTypesIntegrationTest extends TestCase
17+
class DataTypesIntegrationTest extends TestCase
1818
{
1919
use CreatesQueryAPI;
2020

tests/Integration/Neo4jQueryAPIIntegrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use PHPUnit\Framework\TestCase;
1414
use Neo4j\QueryAPI\Enums\AccessMode;
1515

16-
final class Neo4jQueryAPIIntegrationTest extends TestCase
16+
class Neo4jQueryAPIIntegrationTest extends TestCase
1717
{
1818
private Neo4jQueryAPI $api;
1919

tests/Integration/Neo4jQueryAPITest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Neo4j\QueryAPI\Objects\Authentication;
99
use Neo4j\QueryAPI\Configuration;
1010

11-
final class Neo4jQueryAPITest extends TestCase
11+
class Neo4jQueryAPITest extends TestCase
1212
{
1313
public function testLoginWithValidConfiguration(): void
1414
{

0 commit comments

Comments
 (0)