Fix more PHPDoc (#12665)

* Fix PHPDoc

* Fix PHPDoc
This commit is contained in:
Jellyfrog
2021-03-28 19:18:47 +02:00
committed by GitHub
parent 9946fe8b15
commit efb157f5fb
35 changed files with 47 additions and 54 deletions

View File

@@ -29,8 +29,8 @@ interface Transport
/**
* Gets called when an alert is sent
*
* @param $alert_data array An array created by DescribeAlert
* @param $opts array|true The options from the alert_transports transport_config column
* @param array $alert_data An array created by DescribeAlert
* @param array|true $opts The options from the alert_transports transport_config column
* @return mixed Returns if the call was successful
*/
public function deliverAlert($alert_data, $opts);

View File

@@ -28,7 +28,7 @@ interface Keyable
{
/**
* Get a string that can identify a unique instance of this model
* @return string
* @return string|int
*/
public function getCompositeKey();
}