Skip to content

Commit de0ff31

Browse files
Fixed author annotations
1 parent 87e9d1c commit de0ff31

30 files changed

+30
-30
lines changed

src/Parse/Internal/AddOperation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* Class AddOperation - FieldOperation for adding object(s) to array fields.
1010
*
11-
* @author Fosco Marotto <fjm@fb.com>
11+
* @author Fosco Marotto <fjm@fb.com>
1212
*/
1313
class AddOperation implements FieldOperation
1414
{

src/Parse/Internal/AddUniqueOperation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* Class AddUniqueOperation - Operation to add unique objects to an array key.
1010
*
11-
* @author Fosco Marotto <fjm@fb.com>
11+
* @author Fosco Marotto <fjm@fb.com>
1212
*/
1313
class AddUniqueOperation implements FieldOperation
1414
{

src/Parse/Internal/DeleteOperation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Class DeleteOperation - FieldOperation to remove a key from an object.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class DeleteOperation implements FieldOperation
1111
{

src/Parse/Internal/Encodable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Class Encodable - Interface for Parse Classes which provide an encode
77
* method.
88
*
9-
* @author Fosco Marotto <fjm@fb.com>
9+
* @author Fosco Marotto <fjm@fb.com>
1010
*/
1111
interface Encodable
1212
{

src/Parse/Internal/FieldOperation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Class FieldOperation - Interface for all Parse Field Operations.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
interface FieldOperation extends Encodable
1111
{

src/Parse/Internal/IncrementOperation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Class IncrementOperation - Operation to increment numeric object key.
99
*
10-
* @author Fosco Marotto <fjm@fb.com>
10+
* @author Fosco Marotto <fjm@fb.com>
1111
*/
1212
class IncrementOperation implements FieldOperation
1313
{

src/Parse/Internal/ParseRelationOperation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* ParseRelationOperation - A class that is used to manage ParseRelation changes such as object add or remove.
1111
*
12-
* @author Mohamed Madbouli <mohamedmadbouli@fb.com>
12+
* @author Mohamed Madbouli <mohamedmadbouli@fb.com>
1313
*/
1414
class ParseRelationOperation implements FieldOperation
1515
{

src/Parse/Internal/RemoveOperation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Class RemoveOperation - FieldOperation for removing object(s) from array
1111
* fields.
1212
*
13-
* @author Fosco Marotto <fjm@fb.com>
13+
* @author Fosco Marotto <fjm@fb.com>
1414
*/
1515
class RemoveOperation implements FieldOperation
1616
{

src/Parse/Internal/SetOperation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Class SetOperation - Operation to set a value for an object key.
99
*
10-
* @author Fosco Marotto <fjm@fb.com>
10+
* @author Fosco Marotto <fjm@fb.com>
1111
*/
1212
class SetOperation implements FieldOperation
1313
{

src/Parse/ParseACL.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* example, any user could read a particular object but only a particular set
1313
* of users could write to that object.
1414
*
15-
* @author Mohamed Madbouli <mohamedmadbouli@fb.com>
15+
* @author Mohamed Madbouli <mohamedmadbouli@fb.com>
1616
*/
1717
class ParseACL implements Encodable
1818
{

src/Parse/ParseAggregateException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParseAggregateException - Multiple error condition.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class ParseAggregateException extends ParseException
1111
{

src/Parse/ParseAnalytics.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* ParseAnalytics - Handles sending app-open and custom analytics events.
99
*
10-
* @author Fosco Marotto <fjm@fb.com>
10+
* @author Fosco Marotto <fjm@fb.com>
1111
*/
1212
class ParseAnalytics
1313
{

src/Parse/ParseBytes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParseBytes - Representation of a Byte array for storage on a Parse Object.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class ParseBytes implements Internal\Encodable
1111
{

src/Parse/ParseClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* ParseClient - Main class for Parse initialization and communication.
99
*
10-
* @author Fosco Marotto <fjm@fb.com>
10+
* @author Fosco Marotto <fjm@fb.com>
1111
*/
1212
final class ParseClient
1313
{

src/Parse/ParseCloud.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParseCloud - Facilitates calling Parse Cloud functions.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class ParseCloud
1111
{

src/Parse/ParseConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParseConfig - For accessing Parse Config settings.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class ParseConfig
1111
{

src/Parse/ParseException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParseException - Wrapper for \Exception class.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class ParseException extends \Exception
1111
{

src/Parse/ParseFile.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParseFile - Representation of a Parse File object.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class ParseFile implements \Parse\Internal\Encodable
1111
{

src/Parse/ParseGeoPoint.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParseGeoPoint - Representation of a Parse GeoPoint object.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class ParseGeoPoint implements \Parse\Internal\Encodable
1111
{

src/Parse/ParseInstallation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParseInstallation - Representation of an Installation stored on Parse.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class ParseInstallation extends ParseObject
1111
{

src/Parse/ParseMemoryStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* ParseMemoryStorage - Uses non-persisted memory for storage.
77
* This is used by default if a PHP Session is not active.
88
*
9-
* @author Fosco Marotto <fjm@fb.com>
9+
* @author Fosco Marotto <fjm@fb.com>
1010
*/
1111
class ParseMemoryStorage implements ParseStorageInterface
1212
{

src/Parse/ParseObject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* ParseObject - Representation of an object stored on Parse.
1717
*
18-
* @author Fosco Marotto <fjm@fb.com>
18+
* @author Fosco Marotto <fjm@fb.com>
1919
*/
2020
class ParseObject implements Encodable
2121
{

src/Parse/ParsePush.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParsePush - Handles sending push notifications with Parse.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class ParsePush
1111
{

src/Parse/ParseQuery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParseQuery - Handles querying data from Parse.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class ParseQuery
1111
{

src/Parse/ParseRelation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* ParseRelation - A class that is used to access all of the children of a many-to-many relationship. Each instance
99
* of ParseRelation is associated with a particular parent object and key.
1010
*
11-
* @author Mohamed Madbouli <mohamedmadbouli@fb.com>
11+
* @author Mohamed Madbouli <mohamedmadbouli@fb.com>
1212
*/
1313
class ParseRelation
1414
{

src/Parse/ParseRole.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParseRole - Representation of an access Role.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class ParseRole extends ParseObject
1111
{

src/Parse/ParseSession.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParseSession - Representation of an expiring user session.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class ParseSession extends ParseObject
1111
{

src/Parse/ParseSessionStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParseSessionStorage - Uses PHP session support for persistent storage.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class ParseSessionStorage implements ParseStorageInterface
1111
{

src/Parse/ParseStorageInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParseStorageInterface - Specifies an interface for implementing persistence.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
interface ParseStorageInterface
1111
{

src/Parse/ParseUser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* ParseUser - Representation of a user object stored on Parse.
77
*
8-
* @author Fosco Marotto <fjm@fb.com>
8+
* @author Fosco Marotto <fjm@fb.com>
99
*/
1010
class ParseUser extends ParseObject
1111
{

0 commit comments

Comments
 (0)