Skip to content

Commit 091dad9

Browse files
committed
Minor example fixes
1 parent 3984f90 commit 091dad9

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

examples/ProductsApi/delete.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Printful\PrintfulApiClient;
66
use Printful\PrintfulProductsApi;
77

8-
require_once __DIR__ . '../../vendor/autoload.php';
8+
require_once __DIR__ . '/../../vendor/autoload.php';
99

1010
/**
1111
* This example fill will demonstrate how to delete Product and it's variants using Products Api

examples/ProductsApi/get-products.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Printful\PrintfulProductsApi;
77
use Printful\Structures\Sync\Responses\SyncProductsResponse;
88

9-
require_once __DIR__ . '../../vendor/autoload.php';
9+
require_once __DIR__ . '/../../vendor/autoload.php';
1010

1111
/**
1212
* This example fill will demonstrate how to get list of products in your store using Products API

examples/ProductsApi/get-single-variant.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Printful\PrintfulProductsApi;
77
use Printful\Structures\Sync\Responses\SyncVariantResponse;
88

9-
require_once __DIR__ . '../../vendor/autoload.php';
9+
require_once __DIR__ . '/../../vendor/autoload.php';
1010

1111
/**
1212
* This example fill will demonstrate how to get a single Variant using id and external id

examples/ProductsApi/product-creation-array.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Printful\PrintfulProductsApi;
88
use Printful\Structures\Sync\SyncProductCreationParameters;
99

10-
require_once __DIR__ . '../../vendor/autoload.php';
10+
require_once __DIR__ . '/../../vendor/autoload.php';
1111

1212
/**
1313
* This example fill will demonstrate usage of Products API using data in an array

examples/ProductsApi/product-creation-mixed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Printful\Structures\Sync\Requests\SyncVariantRequest;
1010
use Printful\Structures\Sync\SyncProductCreationParameters;
1111

12-
require_once __DIR__ . '../../vendor/autoload.php';
12+
require_once __DIR__ . '/../../vendor/autoload.php';
1313

1414
/**
1515
* This example fill will demonstrate usage of Products API in mixed fashion

examples/ProductsApi/product-creation-oop.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use Printful\Structures\Sync\Requests\SyncVariantRequestOption;
1212
use Printful\Structures\Sync\SyncProductCreationParameters;
1313

14-
require_once __DIR__ . '../../vendor/autoload.php';
14+
require_once __DIR__ . '/../../vendor/autoload.php';
1515

1616
/**
1717
* This example fill will demonstrate usage of Products API in OOP fashion

examples/ProductsApi/product-update.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Printful\Structures\Sync\Requests\SyncProductRequest;
99
use Printful\Structures\Sync\SyncProductUpdateParameters;
1010

11-
require_once __DIR__ . '../../vendor/autoload.php';
11+
require_once __DIR__ . '/../../vendor/autoload.php';
1212

1313
/**
1414
* This example fill will demonstrate how to update Product using Products Api

examples/ProductsApi/variant-update.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Printful\PrintfulProductsApi;
88
use Printful\Structures\Sync\Requests\SyncVariantRequest;
99

10-
require_once __DIR__ . '../../vendor/autoload.php';
10+
require_once __DIR__ . '/../../vendor/autoload.php';
1111

1212
/**
1313
* This example fill will demonstrate how to update Variant using Products Api

0 commit comments

Comments
 (0)