Skip to content

Commit

Permalink
add phpdoc to interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
diloabininyeri committed Aug 6, 2018
1 parent d1218c3 commit 63c2709
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
13 changes: 12 additions & 1 deletion interfaces/ContentInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,21 @@

namespace Interfaces;


/**
* Interface ContentInterface
* @package Interfaces
*
*
*/
interface ContentInterface
{

/**
* @param $content
* @return mixed
*
*
*/
public function fileGetContentRemoteSite($content);

}
12 changes: 11 additions & 1 deletion interfaces/ResultRegex.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,20 @@

namespace Interfaces;


/**
* Interface ResultRegex
* @package Interfaces
*
*
*/
interface ResultRegex
{

/**
* @param $content
* @return mixed
*
*/
public function getResultRegex($content);

}

0 comments on commit 63c2709

Please sign in to comment.