Skip to content

Commit

Permalink
Merge pull request #429 from romainneutron/fix-428
Browse files Browse the repository at this point in the history
Fix #428 : Fix ManipulatorInterface API docblocks
  • Loading branch information
romainneutron committed May 7, 2015
2 parents 9224594 + b2db414 commit 6a92e46
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions lib/Imagine/Image/ManipulatorInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ interface ManipulatorInterface
*
* @throws RuntimeException
*
* @return ManipulatorInterface
* @return static
*/
public function copy();

Expand All @@ -43,7 +43,7 @@ public function copy();
* @throws OutOfBoundsException
* @throws RuntimeException
*
* @return ManipulatorInterface
* @return static
*/
public function crop(PointInterface $start, BoxInterface $size);

Expand All @@ -55,7 +55,7 @@ public function crop(PointInterface $start, BoxInterface $size);
*
* @throws RuntimeException
*
* @return ManipulatorInterface
* @return static
*/
public function resize(BoxInterface $size, $filter = ImageInterface::FILTER_UNDEFINED);

Expand All @@ -69,7 +69,7 @@ public function resize(BoxInterface $size, $filter = ImageInterface::FILTER_UNDE
*
* @throws RuntimeException
*
* @return ManipulatorInterface
* @return static
*/
public function rotate($angle, ColorInterface $background = null);

Expand All @@ -87,7 +87,7 @@ public function rotate($angle, ColorInterface $background = null);
* @throws OutOfBoundsException
* @throws RuntimeException
*
* @return ManipulatorInterface
* @return static
*/
public function paste(ImageInterface $image, PointInterface $start);

Expand All @@ -101,7 +101,7 @@ public function paste(ImageInterface $image, PointInterface $start);
*
* @throws RuntimeException
*
* @return ManipulatorInterface
* @return static
*/
public function save($path = null, array $options = array());

Expand All @@ -113,7 +113,7 @@ public function save($path = null, array $options = array());
*
* @throws RuntimeException
*
* @return ManipulatorInterface
* @return static
*/
public function show($format, array $options = array());

Expand All @@ -122,7 +122,7 @@ public function show($format, array $options = array());
*
* @throws RuntimeException
*
* @return ManipulatorInterface
* @return static
*/
public function flipHorizontally();

Expand All @@ -131,7 +131,7 @@ public function flipHorizontally();
*
* @throws RuntimeException
*
* @return ManipulatorInterface
* @return static
*/
public function flipVertically();

Expand All @@ -140,7 +140,7 @@ public function flipVertically();
*
* @throws RuntimeException
*
* @return ManipulatorInterface
* @return static
*/
public function strip();

Expand All @@ -154,7 +154,7 @@ public function strip();
*
* @throws RuntimeException
*
* @return ManipulatorInterface
* @return static
*/
public function thumbnail(BoxInterface $size, $mode = self::THUMBNAIL_INSET, $filter = ImageInterface::FILTER_UNDEFINED);

Expand All @@ -163,7 +163,7 @@ public function thumbnail(BoxInterface $size, $mode = self::THUMBNAIL_INSET, $fi
*
* @param ImageInterface $mask
*
* @return ManipulatorInterface
* @return static
*/
public function applyMask(ImageInterface $mask);

Expand All @@ -174,7 +174,7 @@ public function applyMask(ImageInterface $mask);
*
* @param FillInterface $fill
*
* @return ManipulatorInterface
* @return static
*/
public function fill(FillInterface $fill);
}

0 comments on commit 6a92e46

Please sign in to comment.