Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBernskiold authored and github-actions[bot] committed Dec 29, 2023
1 parent c99e769 commit fea784a
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 deletions.
5 changes: 3 additions & 2 deletions src/Branding/Branding.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@

namespace BernskioldMedia\LaravelPpt\Branding;

use function array_merge;
use BernskioldMedia\LaravelPpt\Concerns\Makeable;
use function collect;
use Illuminate\Support\Str;
use PhpOffice\PhpPresentation\Style\Color;
use ReflectionClass;

use function array_merge;
use function collect;

class Branding
{
use Makeable;
Expand Down
1 change: 1 addition & 0 deletions src/Branding/ParagraphStyle.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
use BernskioldMedia\LaravelPpt\Concerns\Makeable;
use BernskioldMedia\LaravelPpt\Concerns\Slides\WithFontSettings;
use Illuminate\Contracts\Support\Arrayable;

use function method_exists;

/**
Expand Down
3 changes: 2 additions & 1 deletion src/Commands/CreateNewSlideCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

namespace BernskioldMedia\LaravelPpt\Commands;

use Illuminate\Console\Command;

use function config;
use function file_put_contents;
use Illuminate\Console\Command;
use function is_dir;
use function mkdir;

Expand Down
3 changes: 2 additions & 1 deletion src/Commands/CreateNewSlideDeckCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@

namespace BernskioldMedia\LaravelPpt\Commands;

use Illuminate\Console\Command;

use function array_keys;
use function array_map;
use function array_values;
use function config;
use function file_get_contents;
use function file_put_contents;
use Illuminate\Console\Command;
use function is_dir;
use function mkdir;
use function str;
Expand Down
3 changes: 2 additions & 1 deletion src/Presentation/BaseSlide.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
use BernskioldMedia\LaravelPpt\Concerns\Slides\WithTextColor;
use BernskioldMedia\LaravelPpt\Contracts\Slide as SlideContract;
use Closure;
use function config;
use Illuminate\Support\Traits\Conditionable;
use PhpOffice\PhpPresentation\Slide;
use PhpOffice\PhpPresentation\Slide\Background\Color;

use function config;
use function tap;

abstract class BaseSlide implements SlideContract
Expand Down
5 changes: 3 additions & 2 deletions src/Presentation/Presentation.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@
use BernskioldMedia\LaravelPpt\Concerns\Slides\WithPadding;
use BernskioldMedia\LaravelPpt\Concerns\Slides\WithSize;
use BernskioldMedia\LaravelPpt\Contracts\CustomizesPowerpointBranding;
use function config;
use Illuminate\Contracts\Auth\Authenticatable;
use Illuminate\Support\Facades\Storage;
use function method_exists;
use PhpOffice\PhpPresentation\DocumentLayout;
use PhpOffice\PhpPresentation\Exception\OutOfBoundsException;
use PhpOffice\PhpPresentation\IOFactory;
use PhpOffice\PhpPresentation\PhpPresentation;

use function config;
use function method_exists;

/**
* @method static static make(string $title, ?int $width = null, ?int $height = null, ?string $branding = null)
*/
Expand Down
1 change: 1 addition & 0 deletions src/SlideMasters/BlankWithTitleSubtitle.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
use BernskioldMedia\LaravelPpt\Concerns\Slides\WithCustomContents;
use BernskioldMedia\LaravelPpt\Concerns\Slides\WithSlideTitle;
use BernskioldMedia\LaravelPpt\Presentation\BaseSlide;

use function config;

/**
Expand Down

0 comments on commit fea784a

Please sign in to comment.