Fixes for last commit

This commit is contained in:
Ivan Lanin 2014-05-16 16:00:40 +07:00
parent 048436cd04
commit 7c12dfc735
3 changed files with 3 additions and 3 deletions

View File

@ -132,7 +132,7 @@ class Settings
* This sets the setIndent and setIndentString for better compatibility
*
* @param bool $compatibility
* @return true
* @return bool
*/
public static function setCompatibility($compatibility)
{

View File

@ -430,7 +430,7 @@ class Table extends Border
/**
* Get cell margin
*
* @return int[]
* @return integer[]
*/
public function getCellMargin()
{

View File

@ -103,6 +103,6 @@ class SettingsTest extends \PHPUnit_Framework_TestCase
'defaultFontName' => 'Arial',
'defaultFontSize' => 10,
);
$this->assertEquals($expected, Settings::loadConfig(__DIR__ . '/../../../phpword.yml.dist'));
$this->assertEquals($expected, Settings::loadConfig(__DIR__ . '/../../../phpword.ini.dist'));
}
}