Skip to content

Commit 7c12dfc

Browse files
committed
Fixes for last commit
1 parent 048436c commit 7c12dfc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/PhpWord/Settings.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public static function hasCompatibility()
132132
* This sets the setIndent and setIndentString for better compatibility
133133
*
134134
* @param bool $compatibility
135-
* @return true
135+
* @return bool
136136
*/
137137
public static function setCompatibility($compatibility)
138138
{

src/PhpWord/Style/Table.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ public function setCellMarginBottom($value = null)
430430
/**
431431
* Get cell margin
432432
*
433-
* @return int[]
433+
* @return integer[]
434434
*/
435435
public function getCellMargin()
436436
{

tests/PhpWord/Tests/SettingsTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,6 @@ public function testLoadConfig()
103103
'defaultFontName' => 'Arial',
104104
'defaultFontSize' => 10,
105105
);
106-
$this->assertEquals($expected, Settings::loadConfig(__DIR__ . '/../../../phpword.yml.dist'));
106+
$this->assertEquals($expected, Settings::loadConfig(__DIR__ . '/../../../phpword.ini.dist'));
107107
}
108108
}

0 commit comments

Comments
 (0)