Skip to content

Commit 13aeb81

Browse files
committed
Add Api classes
1 parent 70b8f3b commit 13aeb81

28 files changed

+282
-3
lines changed

src/Api/ApiAuthApi.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace Alexkart\Looker\Api;
4+
5+
use Alexkart\Looker\Api;
6+
7+
class ApiAuthApi extends Api {
8+
protected function getApiClassName(): string {
9+
return \Swagger\Client\Api\ApiAuthApi::class;
10+
}
11+
}

src/Api/AuthApi.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace Alexkart\Looker\Api;
4+
5+
use Alexkart\Looker\Api;
6+
7+
class AuthApi extends Api {
8+
protected function getApiClassName(): string {
9+
return \Swagger\Client\Api\AuthApi::class;
10+
}
11+
}

src/Api/ColorCollectionApi.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace Alexkart\Looker\Api;
4+
5+
use Alexkart\Looker\Api;
6+
7+
class ColorCollectionApi extends Api {
8+
protected function getApiClassName(): string {
9+
return \Swagger\Client\Api\ColorCollectionApi::class;
10+
}
11+
}

src/Api/ConfigApi.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace Alexkart\Looker\Api;
4+
5+
use Alexkart\Looker\Api;
6+
7+
class ConfigApi extends Api {
8+
protected function getApiClassName(): string {
9+
return \Swagger\Client\Api\ConfigApi::class;
10+
}
11+
}

src/Api/ConnectionApi.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace Alexkart\Looker\Api;
4+
5+
use Alexkart\Looker\Api;
6+
7+
class ConnectionApi extends Api {
8+
protected function getApiClassName(): string {
9+
return \Swagger\Client\Api\ConnectionApi::class;
10+
}
11+
}

src/Api/ContentApi.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace Alexkart\Looker\Api;
4+
5+
use Alexkart\Looker\Api;
6+
7+
class ContentApi extends Api {
8+
protected function getApiClassName(): string {
9+
return \Swagger\Client\Api\ContentApi::class;
10+
}
11+
}

src/DashboardApi.php renamed to src/Api/DashboardApi.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?php
22

3-
namespace Alexkart\Looker;
3+
namespace Alexkart\Looker\Api;
4+
5+
use Alexkart\Looker\Api;
46

57
class DashboardApi extends Api {
68
protected function getApiClassName(): string {

src/Api/DataActionApi.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace Alexkart\Looker\Api;
4+
5+
use Alexkart\Looker\Api;
6+
7+
class DataActionApi extends Api {
8+
protected function getApiClassName(): string {
9+
return \Swagger\Client\Api\DataActionApi::class;
10+
}
11+
}

src/Api/DatagroupApi.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace Alexkart\Looker\Api;
4+
5+
use Alexkart\Looker\Api;
6+
7+
class DatagroupApi extends Api {
8+
protected function getApiClassName(): string {
9+
return \Swagger\Client\Api\DatagroupApi::class;
10+
}
11+
}

src/Api/DerivedTableApi.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace Alexkart\Looker\Api;
4+
5+
use Alexkart\Looker\Api;
6+
7+
class DerivedTableApi extends Api {
8+
protected function getApiClassName(): string {
9+
return \Swagger\Client\Api\DerivedTableApi::class;
10+
}
11+
}

0 commit comments

Comments
 (0)