for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/* Copyright (C) 2020 Laurent Destailleur <[email protected]>
* Copyright (C) 2024 Frédéric France <[email protected]>
* Copyright (C) 2024 MDW <[email protected]>
* Copyright (C) 2024 Rafael San José <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
namespace Dolibarr\Code\Recruitement\Classes;
use Dolibarr\Core\Base\CommonObjectLine;
use DoliDB;
/**
* Class RecruitmentCandidatureLine. You can also remove this and generate a CRUD class for lines objects.
class RecruitmentCandidatureLine extends CommonObjectLine
{
// To complete with content of an object RecruitmentCandidatureLine
// We should have a field rowid, fk_recruitmentcandidature and position
* Constructor
* @param DoliDB $db Database handler
public function __construct(DoliDB $db)
$this->db = $db;
$db
DoliDB
Dolibarr\Core\Base\DoliDB
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..
}
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..