Skip to content

Commit

Permalink
Merge pull request #136 from Arhell/src
Browse files Browse the repository at this point in the history
update src folder links
  • Loading branch information
bizley authored Sep 10, 2023
2 parents 9e5da67 + 254392c commit 62d7b92
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

/**
* Connection represents the Sphinx connection via MySQL protocol.
* This class uses [PDO](http://www.php.net/manual/en/ref.pdo.php) to maintain such connection.
* This class uses [PDO](https://www.php.net/manual/en/ref.pdo.php) to maintain such connection.
* Note: although PDO supports numerous database drivers, this class supports only MySQL.
*
* In order to setup Sphinx "searchd" to support MySQL protocol following configuration should be added:
Expand Down
4 changes: 2 additions & 2 deletions src/MatchBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* MatchBuilder builds a MATCH SphinxQL expression based on the specification given as a [[MatchExpression]] object.
*
* @see MatchExpression
* @see http://sphinxsearch.com/docs/current.html#extended-syntax
* @see https://sphinxsearch.com/docs/current.html#extended-syntax
*
* @author Kirichenko Sergey <[email protected]>
* @author Paul Klimov <[email protected]>
Expand Down Expand Up @@ -339,4 +339,4 @@ protected function parseParams($expression, $params)

return $expression;
}
}
}
4 changes: 2 additions & 2 deletions src/MatchExpression.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
* using [[Connection::escapeMatchValue()]].
*
* @see MatchBuilder
* @see http://sphinxsearch.com/docs/current.html#extended-syntax
* @see https://sphinxsearch.com/docs/current.html#extended-syntax
*
* @author Paul Klimov <[email protected]>
* @since 2.0.6
Expand Down Expand Up @@ -402,4 +402,4 @@ protected function isEmpty($value)
{
return $value === '' || $value === [] || $value === null || is_string($value) && trim($value) === '';
}
}
}
4 changes: 2 additions & 2 deletions src/Schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public function getQueryBuilder()
* Determines the PDO type for the given PHP data value.
* @param mixed $data the data whose PDO type is to be determined
* @return int the PDO type
* @see http://www.php.net/manual/en/pdo.constants.php
* @see https://www.php.net/manual/en/pdo.constants.php
*/
public function getPdoType($data)
{
Expand Down Expand Up @@ -321,7 +321,7 @@ public function createQueryBuilder()
* Note that if the parameter is not a string, it will be returned without change.
* @param string $str string to be quoted
* @return string the properly quoted string
* @see http://www.php.net/manual/en/function.PDO-quote.php
* @see https://www.php.net/manual/en/function.PDO-quote.php
*/
public function quoteValue($str)
{
Expand Down

0 comments on commit 62d7b92

Please sign in to comment.