fix (qodana) Return value type is not compatible with declared
This commit is contained in:
parent
c4521efa57
commit
02f4f47083
@ -365,7 +365,7 @@ class Boms extends DolibarrApi
|
|||||||
*
|
*
|
||||||
* @url PUT {id}/lines/{lineid}
|
* @url PUT {id}/lines/{lineid}
|
||||||
*
|
*
|
||||||
* @return array|bool
|
* @return object|bool
|
||||||
*/
|
*/
|
||||||
public function putLine($id, $lineid, $request_data = null)
|
public function putLine($id, $lineid, $request_data = null)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -4277,7 +4277,7 @@ abstract class CommonObject
|
|||||||
* @param string $field_select name of field we need to get a list
|
* @param string $field_select name of field we need to get a list
|
||||||
* @param string $field_where name of field of object we need to get linked items
|
* @param string $field_where name of field of object we need to get linked items
|
||||||
* @param string $table_element name of association table
|
* @param string $table_element name of association table
|
||||||
* @return array Array of record
|
* @return array|int Array of record, -1 if empty
|
||||||
*/
|
*/
|
||||||
public static function getAllItemsLinkedByObjectID($fk_object_where, $field_select, $field_where, $table_element)
|
public static function getAllItemsLinkedByObjectID($fk_object_where, $field_select, $field_where, $table_element)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -316,7 +316,7 @@ class DoliDBSqlite3 extends DoliDB
|
|||||||
* @param string $passwd password
|
* @param string $passwd password
|
||||||
* @param string $name name of database (not used for mysql, used for pgsql)
|
* @param string $name name of database (not used for mysql, used for pgsql)
|
||||||
* @param integer $port Port of database server
|
* @param integer $port Port of database server
|
||||||
* @return SQLite3 Database access handler
|
* @return SQLite3|string Database access handler
|
||||||
* @see close()
|
* @see close()
|
||||||
*/
|
*/
|
||||||
public function connect($host, $login, $passwd, $name, $port = 0)
|
public function connect($host, $login, $passwd, $name, $port = 0)
|
||||||
|
|||||||
@ -295,7 +295,7 @@ class Donations extends DolibarrApi
|
|||||||
* @throws RestException 404
|
* @throws RestException 404
|
||||||
* @throws RestException 500 System error
|
* @throws RestException 500 System error
|
||||||
*
|
*
|
||||||
* @return array
|
* @return object
|
||||||
*/
|
*/
|
||||||
public function validate($id, $idwarehouse = 0, $notrigger = 0)
|
public function validate($id, $idwarehouse = 0, $notrigger = 0)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -633,7 +633,7 @@ class EcmDirectory extends CommonObject
|
|||||||
* level Level of line (Added by buildPathFromId call)
|
* level Level of line (Added by buildPathFromId call)
|
||||||
*
|
*
|
||||||
* @param int $force Force reload of full arbo even if already loaded in cache $this->cats
|
* @param int $force Force reload of full arbo even if already loaded in cache $this->cats
|
||||||
* @return array Tableau de array
|
* @return array|int Tableau de array if OK, -1 if KO
|
||||||
*/
|
*/
|
||||||
public function get_full_arbo($force = 0)
|
public function get_full_arbo($force = 0)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -502,7 +502,7 @@ class Shipments extends DolibarrApi
|
|||||||
*
|
*
|
||||||
* @url POST {id}/validate
|
* @url POST {id}/validate
|
||||||
*
|
*
|
||||||
* @return array
|
* @return object
|
||||||
* \todo An error 403 is returned if the request has an empty body.
|
* \todo An error 403 is returned if the request has an empty body.
|
||||||
* Error message: "Forbidden: Content type `text/plain` is not supported."
|
* Error message: "Forbidden: Content type `text/plain` is not supported."
|
||||||
* Workaround: send this in the body
|
* Workaround: send this in the body
|
||||||
@ -630,7 +630,7 @@ class Shipments extends DolibarrApi
|
|||||||
*
|
*
|
||||||
* @url POST {id}/close
|
* @url POST {id}/close
|
||||||
*
|
*
|
||||||
* @return int
|
* @return object
|
||||||
*/
|
*/
|
||||||
public function close($id, $notrigger = 0)
|
public function close($id, $notrigger = 0)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1942,7 +1942,7 @@ class SupplierProposal extends CommonObject
|
|||||||
* @param int $offset For pagination
|
* @param int $offset For pagination
|
||||||
* @param string $sortfield Sort criteria
|
* @param string $sortfield Sort criteria
|
||||||
* @param string $sortorder Sort order
|
* @param string $sortorder Sort order
|
||||||
* @return int -1 if KO, array with result if OK
|
* @return array|int -1 if KO, array with result if OK
|
||||||
*/
|
*/
|
||||||
public function liste_array($shortlist = 0, $draft = 0, $notcurrentuser = 0, $socid = 0, $limit = 0, $offset = 0, $sortfield = 'p.datec', $sortorder = 'DESC')
|
public function liste_array($shortlist = 0, $draft = 0, $notcurrentuser = 0, $socid = 0, $limit = 0, $offset = 0, $sortfield = 'p.datec', $sortorder = 'DESC')
|
||||||
{
|
{
|
||||||
@ -2223,7 +2223,7 @@ class SupplierProposal extends CommonObject
|
|||||||
*
|
*
|
||||||
* @param User $user Object user
|
* @param User $user Object user
|
||||||
* @param int $mode "opened" for askprice to close, "signed" for proposal to invoice
|
* @param int $mode "opened" for askprice to close, "signed" for proposal to invoice
|
||||||
* @return int <0 if KO, >0 if OK
|
* @return WorkboardResponse|int <0 if KO, WorkboardResponse if OK
|
||||||
*/
|
*/
|
||||||
public function load_board($user, $mode)
|
public function load_board($user, $mode)
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user