Skip to content
This repository has been archived by the owner on Aug 17, 2023. It is now read-only.

Commit

Permalink
add method
Browse files Browse the repository at this point in the history
  • Loading branch information
holyshared committed Sep 10, 2014
1 parent f7d10d8 commit 0eb7d92
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/entity/ReportInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,29 @@

use coverallskit\CompositeEntityInterface;

/**
* Interface ReportInterface
* @package coverallskit\entity
*/
interface ReportInterface extends CompositeEntityInterface
{

const DEFAULT_NAME = 'coverage.json';

/**
* @return string
*/
public function getName();

/**
* @return $this
*/
public function save();

/**
* @param string $path
* @return $this
*/
public function saveAs($path);

public function upload();
Expand Down

0 comments on commit 0eb7d92

Please sign in to comment.