Skip to content

Commit 92350f9

Browse files
ErikBernskioldgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 1d49588 commit 92350f9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/SlideMasters/Quote.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ protected function render(): void
2626
$quoteXOffset = $this->horizontalPadding + 100;
2727

2828
// Add opening quotation mark styling to the quote
29-
$formattedQuote = '"' . $this->quote . '"';
29+
$formattedQuote = '"'.$this->quote.'"';
3030

3131
// Render the quote centered vertically
3232
$quoteBox = TextBox::make($this, $formattedQuote)
@@ -41,7 +41,7 @@ protected function render(): void
4141

4242
// Render the attribution below the quote if provided
4343
if (! empty($this->attribution)) {
44-
TextBox::make($this, '' . $this->attribution)
44+
TextBox::make($this, ''.$this->attribution)
4545
->size(20)
4646
->width($quoteWidth)
4747
->position($quoteXOffset, ($this->presentation->height / 2) + 50)

src/SlideMasters/Table.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
use BernskioldMedia\LaravelPpt\Concerns\Slides\WithSlideTitle;
99
use BernskioldMedia\LaravelPpt\Contracts\DynamicallyCreatable;
1010
use BernskioldMedia\LaravelPpt\Presentation\BaseSlide;
11-
use PhpOffice\PhpPresentation\Style\Alignment;
1211
use PhpOffice\PhpPresentation\Style\Color;
1312

1413
/**

0 commit comments

Comments
 (0)