Skip to content

Commit

Permalink
style: remove useless inheritDocs
Browse files Browse the repository at this point in the history
  • Loading branch information
simPod committed Oct 16, 2023
1 parent 71015be commit e6d7bb7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 21 deletions.
6 changes: 0 additions & 6 deletions src/Client/PsrClickHouseAsyncClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ public function __construct(
$this->sqlFactory = new SqlFactory(new ValueFormatter($clickHouseTimeZone));
}

/**
* {@inheritDoc}
*/
public function select(string $sql, Format $outputFormat, array $settings = []): PromiseInterface
{
$formatClause = $outputFormat::toSql();
Expand All @@ -48,9 +45,6 @@ public function select(string $sql, Format $outputFormat, array $settings = []):
);
}

/**
* {@inheritDoc}
*/
public function selectWithParams(
string $sql,
array $params,
Expand Down
15 changes: 0 additions & 15 deletions src/Client/PsrClickHouseClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,25 +41,16 @@ public function __construct(
$this->sqlFactory = new SqlFactory($this->valueFormatter);
}

/**
* {@inheritDoc}
*/
public function executeQuery(string $query, array $settings = []): void
{
$this->executeRequest($query, $settings);
}

/**
* {@inheritDoc}
*/
public function executeQueryWithParams(string $query, array $params, array $settings = []): void
{
$this->executeQuery($this->sqlFactory->createWithParameters($query, $params), $settings);
}

/**
* {@inheritDoc}
*/
public function select(string $query, Format $outputFormat, array $settings = []): Output
{
$formatClause = $outputFormat::toSql();
Expand All @@ -75,9 +66,6 @@ public function select(string $query, Format $outputFormat, array $settings = []
return $outputFormat::output($response->getBody()->__toString());
}

/**
* {@inheritDoc}
*/
public function selectWithParams(string $query, array $params, Format $outputFormat, array $settings = []): Output
{
return $this->select(
Expand All @@ -87,9 +75,6 @@ public function selectWithParams(string $query, array $params, Format $outputFor
);
}

/**
* {@inheritDoc}
*/
public function insert(string $table, array $values, array|null $columns = null, array $settings = []): void
{
if ($values === []) {
Expand Down

0 comments on commit e6d7bb7

Please sign in to comment.