8c07bbf6 by ako@ut.in.ua

protected

1 parent 739c2bac
Copyright (c) 2019 fehrlich
Copyright (c) 2022 ut_devops
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
......
......@@ -4,7 +4,7 @@ An example implementation for the immoscout24 rest api in php. This Client is no
## install
`composer install fehrlich/immoscout24-api-php`
`composer install ut-devops/immoscout24-api-php`
## usage
......@@ -14,7 +14,7 @@ The libary contains an abstract class that needs to be extended by an user defin
### example implementation
```
class MyAPI extends \fehrlich\ScoutAPI\ImmoScoutAPI
class MyAPI extends \ut_devops\ScoutAPI\ImmoScoutAPI
{
/**
* should save the request token with tokenname + secret, the token can be temporarily saved within a session
......
......@@ -4,10 +4,6 @@
"type": "library",
"authors": [
{
"name": "fehrlich",
"email": "franz.ehrlich@googlemail.com"
},
{
"name": "ut-devops",
"email": "devops@ut.in.ua"
}
......
<?php
namespace fehrlich\ImmoScoutAPI;
namespace ut_devops\ImmoScoutAPI;
use fehrlich\ImmoScoutAPI\exceptions\AuthException;
use fehrlich\ImmoScoutAPI\exceptions\InvalidResponse;
use fehrlich\ImmoScoutAPI\exceptions\InvalidTokenException;
use ut_devops\ImmoScoutAPI\exceptions\AuthException;
use ut_devops\ImmoScoutAPI\exceptions\InvalidResponse;
use ut_devops\ImmoScoutAPI\exceptions\InvalidTokenException;
use function GuzzleHttp\json_decode;
use function GuzzleHttp\json_encode;
use GuzzleHttp\Client;
......
<?php
namespace fehrlich\ImmoScoutAPI\exceptions;
namespace ut_devops\ImmoScoutAPI\exceptions;
use Exception;
......
<?php
namespace fehrlich\ImmoScoutAPI\exceptions;
namespace ut_devops\ImmoScoutAPI\exceptions;
use Exception;
......
<?php
namespace fehrlich\ImmoScoutAPI\exceptions;
namespace ut_devops\ImmoScoutAPI\exceptions;
use Exception;
......
<?php
use fehrlich\ImmoScoutAPI\ImmoScoutAPI;
use ut_devops\ImmoScoutAPI\ImmoScoutAPI;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\HandlerStack;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!