Skip to content
Snippets Groups Projects

Resolve #3527223 "Make code pass"

Closes #3527223

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
253 274 */
254 275 public function castNumeric($i = '') {
255 276 if (empty($i)) {
256 return 0;
277 return '0';
  • 253 274 */
    254 275 public function castNumeric($i = '') {
    255 276 if (empty($i)) {
    256 return 0;
    277 return '0';
    257 278 }
    258 279
    259 return $this->isInt($i) ? $i : "{$i}";
    280 return $this->isInt($i) ? (string) $i : "{$i}";
  • Boris Doesborg marked this merge request as ready

    marked this merge request as ready

  • Please register or sign in to reply
    Loading