Skip to content

Commit

Permalink
Set class to final
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwanyoike committed Nov 15, 2017
1 parent c968056 commit 6aaaffd
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Command/DeleteAttributeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use SnowIO\FredhopperDataModel\AttributeData;

class DeleteAttributeCommand extends Command
final class DeleteAttributeCommand extends Command
{
public static function of(string $attributeId)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/DeleteAttributeOptionCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use SnowIO\FredhopperDataModel\AttributeData;
use SnowIO\FredhopperDataModel\AttributeOption;

class DeleteAttributeOptionCommand extends Command
final class DeleteAttributeOptionCommand extends Command
{
public static function of(string $attributeId, string $valueId): self
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/DeleteCategoryCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use SnowIO\FredhopperDataModel\CategoryData;

class DeleteCategoryCommand extends Command
final class DeleteCategoryCommand extends Command
{
public static function of(string $categoryId)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/DeleteProductCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use SnowIO\FredhopperDataModel\ProductData;

class DeleteProductCommand extends Command
final class DeleteProductCommand extends Command
{
public static function of(string $productId)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/DeleteVariantCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use SnowIO\FredhopperDataModel\VariantData;

class DeleteVariantCommand extends Command
final class DeleteVariantCommand extends Command
{
public static function of(string $variantId)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command/SaveVariantCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use SnowIO\FredhopperDataModel\VariantData;

class SaveVariantCommand extends Command
final class SaveVariantCommand extends Command
{
public static function of(VariantData $variantData): self
{
Expand Down

0 comments on commit 6aaaffd

Please sign in to comment.