Fix doc blocks
This commit is contained in:
parent
c4edbe56ff
commit
0887d9088c
25 changed files with 58 additions and 52 deletions
|
|
@ -74,7 +74,7 @@ class AspectRatio
|
|||
}
|
||||
|
||||
/**
|
||||
* Compute the best width for given height and modulus.
|
||||
* Computes the best width for given height and modulus.
|
||||
*
|
||||
* @param Integer $height
|
||||
* @param Integer $modulus
|
||||
|
|
@ -93,7 +93,7 @@ class AspectRatio
|
|||
}
|
||||
|
||||
/**
|
||||
* Compute the best height for given width and modulus.
|
||||
* Computes the best height for given width and modulus.
|
||||
*
|
||||
* @param Integer $width
|
||||
* @param Integer $modulus
|
||||
|
|
|
|||
|
|
@ -22,10 +22,9 @@ class Dimension
|
|||
private $height;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param integer $width
|
||||
* @param integer $height
|
||||
*
|
||||
* @throws InvalidArgumentException when one of the parameteres is invalid
|
||||
*/
|
||||
public function __construct($width, $height)
|
||||
|
|
@ -39,7 +38,7 @@ class Dimension
|
|||
}
|
||||
|
||||
/**
|
||||
* Return width
|
||||
* Returns width.
|
||||
*
|
||||
* @return width
|
||||
*/
|
||||
|
|
@ -49,7 +48,7 @@ class Dimension
|
|||
}
|
||||
|
||||
/**
|
||||
* Return height
|
||||
* Returns height.
|
||||
*
|
||||
* @return integer
|
||||
*/
|
||||
|
|
@ -59,7 +58,7 @@ class Dimension
|
|||
}
|
||||
|
||||
/**
|
||||
* Get the ratio
|
||||
* Returns the ratio.
|
||||
*
|
||||
* @param type $forceStandards Whether or not force the use of standards ratios;
|
||||
*
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ namespace FFMpeg\Coordinate;
|
|||
class Point
|
||||
{
|
||||
private $x;
|
||||
private $Y;
|
||||
private $y;
|
||||
|
||||
public function __construct($x, $y)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ class TimeCode
|
|||
}
|
||||
|
||||
/**
|
||||
* Creates timecode from string
|
||||
* Creates timecode from string.
|
||||
*
|
||||
* @param string $timecode
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue