Remove redundant docblocks now that we've started typehinting

This commit is contained in:
MarkBaker 2020-10-30 13:02:15 +01:00
parent 6480243610
commit 212fc75e31
2 changed files with 1 additions and 3 deletions

View File

@ -239,8 +239,6 @@ class Comment implements IComparable
/**
* Get Alignment.
*
* @return string
*/
public function getAlignment(): string
{

View File

@ -2,8 +2,8 @@
namespace PhpOffice\PhpSpreadsheet;
use PhpOffice\PhpSpreadsheet\Shared\File;
use PhpOffice\PhpSpreadsheet\Reader\IReader;
use PhpOffice\PhpSpreadsheet\Shared\File;
use PhpOffice\PhpSpreadsheet\Writer\IWriter;
/**