Skip to content

Commit

Permalink
Merge pull request #78 from joisarjignesh/analysis-Bo575W
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
joisarjignesh authored Sep 29, 2023
2 parents d176a98 + 219f5b3 commit 5dab872
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
40 changes: 20 additions & 20 deletions src/Bbb.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function __construct(BigBlueButton $bbb)
/**
* for specific server instance.
*
* @param $serverName
* @param $serverName
* @return Bbb
*
* @throws \Exception
Expand Down Expand Up @@ -117,7 +117,7 @@ public function all()
/**
* $meeting.
*
* @param $meeting
* @param $meeting
*
* required fields
* meetingID
Expand All @@ -139,7 +139,7 @@ public function create($meeting)
}

/**
* @param $meeting
* @param $meeting
*
* required fields:
* meetingID
Expand All @@ -165,8 +165,8 @@ public function isMeetingRunning($meeting)
/**
* Join meeting.
*
* @param $meeting
* required fields
* @param $meeting
* required fields
*
* meetingID
* userName join by name
Expand All @@ -189,10 +189,10 @@ public function join($meeting)
/**
* Returns information about the meeting.
*
* @param $meeting
* required fields
* meetingID
* moderatorPW must be there moderator password
* @param $meeting
* required fields
* meetingID
* moderatorPW must be there moderator password
* @return \Illuminate\Support\Collection
*/
public function getMeetingInfo($meeting)
Expand All @@ -210,7 +210,7 @@ public function getMeetingInfo($meeting)
}

/**
* @param $parameters
* @param $parameters
*
* required fields
* meetingID
Expand Down Expand Up @@ -249,9 +249,9 @@ public function close($meeting)
}

/**
* @param $recording
* required fields
* meetingID
* @param $recording
* required fields
* meetingID
*
* optional fields
* recordID
Expand All @@ -278,9 +278,9 @@ public function getRecordings($recording)
}

/**
* @param $recording
* recordID as string(separated by comma)
* publish as bool
* @param $recording
* recordID as string(separated by comma)
* publish as bool
* @return bool
*/
public function publishRecordings($recording)
Expand All @@ -301,7 +301,7 @@ public function publishRecordings($recording)
}

/**
* @param $recording
* @param $recording
*
* required fields
* recordingID
Expand All @@ -319,7 +319,7 @@ public function deleteRecordings($recording)
}

/**
* @param $recording
* @param $recording
*
* required fields
* recordingID
Expand Down Expand Up @@ -347,7 +347,7 @@ public function getApiVersion()
}

/**
* @param $hooks
* @param $hooks
* @return \Illuminate\Support\Collection
*/
public function hooksCreate($hooks)
Expand All @@ -362,7 +362,7 @@ public function hooksCreate($hooks)
}

/**
* @param $hooks
* @param $hooks
* @return \Illuminate\Support\Collection
*/
public function hooksDestroy($hooks)
Expand Down
4 changes: 2 additions & 2 deletions src/Bigbluebutton.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ class Bigbluebutton extends BigBlueButtonParent
* Bigbluebutton constructor.
* Allows to set url and secret as parameter, otherwise use values in env.
*
* @param $bbbServerBaseUrl API Base Url
* @param $securitySecret API Server secret
* @param $bbbServerBaseUrl API Base Url
* @param $securitySecret API Server secret
* @param TransportInterface|null $transport
*/
public function __construct($bbbServerBaseUrl, $securitySecret, $transport = null)
Expand Down
4 changes: 2 additions & 2 deletions src/Services/InitMeeting.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public function initJoinMeeting(array $parameters)
}

/**
* @param $parameters
* @param $parameters
*
* required fields
* meetingID
Expand All @@ -262,7 +262,7 @@ public function initIsMeetingRunning($parameters)
}

/**
* @param $parameters
* @param $parameters
*
* required fields
* meetingID
Expand Down

0 comments on commit 5dab872

Please sign in to comment.