PHP Classes

File: Domain/Report.php

Recommend this page to a friend!
  Classes of Igor Dyshlenko   PHP Image Crawler   Domain/Report.php   Download  
File: Domain/Report.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Image Crawler
Crawl Web site pages to find images in the pages
Author: By
Last change:
Date: 4 years ago
Size: 215 bytes
 

Contents

Class file image Download
<?php

namespace Domain;

interface
Report
{
   
/**
     * @return string
     */
   
public function getDefaultFilename(): string;

   
/**
     * @return string
     */
   
public function getContent(): string;
}