Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
better-wp-security
/
core
/
modules
/
site-scanner
/
Repository
:
Scans_Repository.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace iThemesSecurity\Site_Scanner\Repository; use iThemesSecurity\Site_Scanner\Scan; interface Scans_Repository { /** * Get the scans matching the given options. * * @param Scans_Options $options * * @return Scan[] */ public function get_scans( Scans_Options $options ); /** * Count the number of scans that match the given options. * * @param Scans_Options $options * * @return int */ public function count_scans( Scans_Options $options ); /** * Get a scan by id. * * @param int $id The scan id. * * @return Scan|\WP_Error */ public function get_scan( $id ); }