Skip to content

Commit

Permalink
Remove leftover standalone @inheritdoc tags
Browse files Browse the repository at this point in the history
Signed-off-by: pine3ree <[email protected]>
  • Loading branch information
pine3ree committed Oct 5, 2023
1 parent f93d92d commit c998484
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 2 additions & 0 deletions src/PDO/Profiling/PDO.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ final class PDO extends \PDO

/**
* {@inheritDoc}
*
* @param \PDO $pdo The decorated pdo instance
*/
public function __construct(\PDO $pdo)
Expand Down Expand Up @@ -109,6 +110,7 @@ public function prepare($statement, $driver_options = [])

/**
* {@inheritDoc}
*
* @link https://www.php.net/manual/en/pdo.query.php
*/
public function query(string $statement, int $fetch_mode = null, $fetch_argument = null, $fetch_extra = null)
Expand Down
3 changes: 0 additions & 3 deletions src/PDO/Profiling/PDOStatement.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ private function __construct(PDO $pdo)
$this->pdo = $pdo;
}

/** {@inheritDoc} */
public function bindValue($parameter, $value, $data_type = null): bool
{
$result = parent::bindValue($parameter, $value, $data_type);
Expand All @@ -44,7 +43,6 @@ public function bindValue($parameter, $value, $data_type = null): bool
return $result;
}

/** {@inheritDoc} */
public function bindParam(
$parameter,
&$variable,
Expand All @@ -60,7 +58,6 @@ public function bindParam(
return $result;
}

/** {@inheritDoc} */
public function execute($input_parameters = null): bool
{
$t0 = microtime(true);
Expand Down
2 changes: 0 additions & 2 deletions src/PDO/Reconnecting/PDO.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,6 @@ public function getAttribute($attribute)

/**
* Return the number of connection initiated so far
*
* @return int
*/
public function getConnectionCount(): int
{
Expand Down

0 comments on commit c998484

Please sign in to comment.