From 63c27097e12f7c91eaa8d926aa6538215b9cde52 Mon Sep 17 00:00:00 2001 From: kadir Date: Mon, 6 Aug 2018 10:58:22 +0300 Subject: [PATCH] add phpdoc to interfaces --- interfaces/ContentInterface.php | 13 ++++++++++++- interfaces/ResultRegex.php | 12 +++++++++++- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/interfaces/ContentInterface.php b/interfaces/ContentInterface.php index 961b1c0..bac1221 100644 --- a/interfaces/ContentInterface.php +++ b/interfaces/ContentInterface.php @@ -2,10 +2,21 @@ namespace Interfaces; - +/** + * Interface ContentInterface + * @package Interfaces + * + * + */ interface ContentInterface { + /** + * @param $content + * @return mixed + * + * + */ public function fileGetContentRemoteSite($content); } \ No newline at end of file diff --git a/interfaces/ResultRegex.php b/interfaces/ResultRegex.php index d18884e..435cb99 100644 --- a/interfaces/ResultRegex.php +++ b/interfaces/ResultRegex.php @@ -4,10 +4,20 @@ namespace Interfaces; - +/** + * Interface ResultRegex + * @package Interfaces + * + * + */ interface ResultRegex { + /** + * @param $content + * @return mixed + * + */ public function getResultRegex($content); } \ No newline at end of file