In PHP version 8.4, this code in the ProjectModel class has been marked as deprecated:
public function setDeadline(string $deadline = null)
This results in the following error:
Deprecated:
SmartCat\Client\Model\ProjectModel::setDeadline(): Implicitly marking parameter $deadline as nullable is deprecated, the explicit nullable type must be used instead in /vhosts/uptodown.com/vendor/smartcat/smartcat-api/src/SmartCAT/API/Model/ProjectModel.php on line 138
This happens with several methods in this class, and I’m not sure if it affects others as well.
In PHP version 8.4, this code in the ProjectModel class has been marked as deprecated:
public function setDeadline(string $deadline = null)This results in the following error:
Deprecated:
SmartCat\Client\Model\ProjectModel::setDeadline(): Implicitly marking parameter $deadline as nullable is deprecated, the explicit nullable type must be used instead in /vhosts/uptodown.com/vendor/smartcat/smartcat-api/src/SmartCAT/API/Model/ProjectModel.php on line 138
This happens with several methods in this class, and I’m not sure if it affects others as well.