This commit introduces Row and Cell entities, that will replace the arrays passed in previously. It also adds support for Cell styling (instead of Row styling only).
31 lines
797 B
PHP
31 lines
797 B
PHP
<?php
|
|
|
|
namespace Box\Spout\Writer\Common\Manager\Style;
|
|
|
|
use Box\Spout\Writer\Common\Entity\Cell;
|
|
use Box\Spout\Writer\Common\Entity\Style\Style;
|
|
|
|
/**
|
|
* Interface StyleHManagernterface
|
|
*/
|
|
interface StyleManagerInterface
|
|
{
|
|
/**
|
|
* Registers the given style as a used style.
|
|
* Duplicate styles won't be registered more than once.
|
|
*
|
|
* @param Style $style The style to be registered
|
|
* @return Style The registered style, updated with an internal ID.
|
|
*/
|
|
public function registerStyle($style);
|
|
|
|
/**
|
|
* Apply additional styles if the given row needs it.
|
|
* Typically, set "wrap text" if a cell contains a new line.
|
|
*
|
|
* @param Cell $cell
|
|
* @return Style The updated style
|
|
*/
|
|
public function applyExtraStylesIfNeeded(Cell $cell);
|
|
}
|