Skip to content

Commit 6ca14ad

Browse files
authored
Merge 216c144 into 1dace2e
2 parents 1dace2e + 216c144 commit 6ca14ad

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ ParseClient::setCAFile(__DIR__ . '/certs/cacert.pem');
221221

222222
We highly recommend you read through the [guide](http://docs.parseplatform.org/php/guide/) first. This will walk you through the basics of working with this sdk, as well as provide insight into how to best develop your project.
223223

224-
If want to know more about what makes the php sdk tick you can read our [API Reference](http://parseplatform.org/parse-php-sdk/namespaces/Parse.html) and flip through the code on [github](https://github.com/parse-community/parse-php-sdk/).
224+
If want to know more about what makes the php sdk tick you can read our [API Reference](http://parseplatform.org/parse-php-sdk/namespaces/parse.html) and flip through the code on [github](https://github.com/parse-community/parse-php-sdk/).
225225

226226
Check out the [Parse PHP Guide] for the full documentation.
227227

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
"prestart": "MONGODB_VERSION=4.0.4 MONGODB_TOPOLOGY=replicaset MONGODB_STORAGE_ENGINE=wiredTiger mongodb-runner start",
1010
"start": "TESTING=1 node ./tests/server.js &",
1111
"server-only": "TESTING=1 node ./tests/server.js",
12-
"document-check": "./vendor/bin/phpdoc -d ./src/ --template='responsive-twig'",
13-
"document": "./vendor/bin/phpdoc -d ./src/ --title 'Parse PHP SDK API Reference' --template='responsive-twig'"
12+
"document-check": "./vendor/bin/phpdoc -d ./src/ --template='default'",
13+
"document": "./vendor/bin/phpdoc -d ./src/ --title 'Parse PHP SDK API Reference' --template='default'"
1414
},
1515
"type": "module",
1616
"repository": {
1717
"type": "git",
1818
"url": "git+https://github.com/parse-community/parse-php-sdk"
1919
},
2020
"license": "BSD-3-Clause",
21-
"homepage": "https://github.com/montymxb/parse-server-test#readme",
21+
"homepage": "https://parseplatform.org",
2222
"devDependencies": {
2323
"@semantic-release/changelog": "6.0.3",
2424
"@semantic-release/commit-analyzer": "9.0.2",

src/Parse/ParseBytes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public static function createFromBase64Data($base64Data)
5555
/**
5656
* Decodes and unpacks a given base64 encoded array of data
5757
*
58-
* @param $base64Data
58+
* @param string $base64Data
5959
*/
6060
private function setBase64Data($base64Data)
6161
{

src/Parse/ParseFile.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ public static function createFromFile($path, $name, $mimeType = null)
164164
/**
165165
* Internal method used when constructing a Parse File from Parse.
166166
*
167-
* @param $name
168-
* @param $url
167+
* @param string $name
168+
* @param string $url
169169
*
170170
* @return ParseFile
171171
*/

src/Parse/ParseGeoPoint.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function getLatitude()
5454
/**
5555
* Set the Latitude value for this GeoPoint.
5656
*
57-
* @param $lat
57+
* @param float $lat
5858
*
5959
* @throws ParseException
6060
*/
@@ -82,7 +82,7 @@ public function getLongitude()
8282
/**
8383
* Set the Longitude value for this GeoPoint.
8484
*
85-
* @param $lon
85+
* @param float $lon
8686
*
8787
* @throws ParseException
8888
*/

src/Parse/ParseObject.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1548,7 +1548,7 @@ public static function _unregisterSubclass()
15481548
/**
15491549
* Check whether there is a subclass registered for a given parse class.
15501550
*
1551-
* @param $parseClassName
1551+
* @param string $parseClassName
15521552
*
15531553
* @return bool
15541554
*/
@@ -1561,7 +1561,7 @@ public static function hasRegisteredSubclass($parseClassName)
15611561
* Get the registered subclass for a Parse class, or a generic ParseObject
15621562
* if no subclass is registered.
15631563
*
1564-
* @param $parseClassName
1564+
* @param string $parseClassName
15651565
*
15661566
* @return ParseObject
15671567
*/

src/Parse/ParseRelation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public function getTargetClass()
9595
/**
9696
* Set the target classname for the relation.
9797
*
98-
* @param $className
98+
* @param string $className
9999
*/
100100
public function setTargetClass($className)
101101
{
@@ -105,7 +105,7 @@ public function setTargetClass($className)
105105
/**
106106
* Set the parent object for the relation.
107107
*
108-
* @param $parent
108+
* @param ParseObject $parent
109109
*/
110110
public function setParent($parent)
111111
{

0 commit comments

Comments
 (0)