Skip to content

Commit 62d7b92

Browse files
authored
Merge pull request #136 from Arhell/src
update src folder links
2 parents 9e5da67 + 254392c commit 62d7b92

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/Connection.php

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

1212
/**
1313
* Connection represents the Sphinx connection via MySQL protocol.
14-
* This class uses [PDO](http://www.php.net/manual/en/ref.pdo.php) to maintain such connection.
14+
* This class uses [PDO](https://www.php.net/manual/en/ref.pdo.php) to maintain such connection.
1515
* Note: although PDO supports numerous database drivers, this class supports only MySQL.
1616
*
1717
* In order to setup Sphinx "searchd" to support MySQL protocol following configuration should be added:

src/MatchBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* MatchBuilder builds a MATCH SphinxQL expression based on the specification given as a [[MatchExpression]] object.
1616
*
1717
* @see MatchExpression
18-
* @see http://sphinxsearch.com/docs/current.html#extended-syntax
18+
* @see https://sphinxsearch.com/docs/current.html#extended-syntax
1919
*
2020
* @author Kirichenko Sergey <sa-kirch@yandex.ru>
2121
* @author Paul Klimov <klimov.paul@gmail.com>
@@ -339,4 +339,4 @@ protected function parseParams($expression, $params)
339339

340340
return $expression;
341341
}
342-
}
342+
}

src/MatchExpression.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
* using [[Connection::escapeMatchValue()]].
8080
*
8181
* @see MatchBuilder
82-
* @see http://sphinxsearch.com/docs/current.html#extended-syntax
82+
* @see https://sphinxsearch.com/docs/current.html#extended-syntax
8383
*
8484
* @author Paul Klimov <klimov.paul@gmail.com>
8585
* @since 2.0.6
@@ -402,4 +402,4 @@ protected function isEmpty($value)
402402
{
403403
return $value === '' || $value === [] || $value === null || is_string($value) && trim($value) === '';
404404
}
405-
}
405+
}

src/Schema.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ public function getQueryBuilder()
272272
* Determines the PDO type for the given PHP data value.
273273
* @param mixed $data the data whose PDO type is to be determined
274274
* @return int the PDO type
275-
* @see http://www.php.net/manual/en/pdo.constants.php
275+
* @see https://www.php.net/manual/en/pdo.constants.php
276276
*/
277277
public function getPdoType($data)
278278
{
@@ -321,7 +321,7 @@ public function createQueryBuilder()
321321
* Note that if the parameter is not a string, it will be returned without change.
322322
* @param string $str string to be quoted
323323
* @return string the properly quoted string
324-
* @see http://www.php.net/manual/en/function.PDO-quote.php
324+
* @see https://www.php.net/manual/en/function.PDO-quote.php
325325
*/
326326
public function quoteValue($str)
327327
{

0 commit comments

Comments
 (0)