File "wfScanFileListItem.php"

Full Path: /home/rrterraplen/public_html/wp-content-20241221212636/plugins/wordfence/lib/wfScanFileListItem.php
File size: 408 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

require_once __DIR__ . '/wfScanFile.php';

class wfScanFileListItem extends wfScanFile {

	private $id;
	private $next;

	public function __construct($id, $realPath, $wordpressPath, $next = null) {
		parent::__construct($realPath, $wordpressPath);
		$this->id = $id;
		$this->next = $next;
	}

	public function getId() {
		return $this->id;
	}

	public function getNext() {
		return $this->next;
	}

}