Skip to content

Commit

Permalink
2.0.22
Browse files Browse the repository at this point in the history
- Composer.json güncellemesi
- Interface hataları
  • Loading branch information
Hasokeyk committed Jul 21, 2022
1 parent c369463 commit 7223124
Show file tree
Hide file tree
Showing 23 changed files with 48 additions and 49 deletions.
16 changes: 8 additions & 8 deletions README-TR.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Giriş yaptıktan sonra veya giriş yapmadan fonksiyon listesindeki kodları kul
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down Expand Up @@ -258,7 +258,7 @@ Array
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down Expand Up @@ -287,7 +287,7 @@ Array
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down Expand Up @@ -348,7 +348,7 @@ Array
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down Expand Up @@ -417,7 +417,7 @@ Array
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down Expand Up @@ -488,7 +488,7 @@ Array
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down Expand Up @@ -550,7 +550,7 @@ Array
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down Expand Up @@ -612,7 +612,7 @@ Array
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ in.
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down Expand Up @@ -265,7 +265,7 @@ Array
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down Expand Up @@ -294,7 +294,7 @@ Array
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down Expand Up @@ -355,7 +355,7 @@ Array
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down Expand Up @@ -424,7 +424,7 @@ Array
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down Expand Up @@ -495,7 +495,7 @@ Array
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down Expand Up @@ -557,7 +557,7 @@ Array
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down Expand Up @@ -619,7 +619,7 @@ Array
```php
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@
"license":"MIT",
"minimum-stability":"stable",
"require":{
"php": ">=7.4.0",
"duosecurity/duo_api_php":"^1.0.3",
"guzzlehttp/guzzle":"^7.4.2",
"ext-json":"*"
},
"autoload":{
"psr-4":{
"Hasokeyk\\InstagramPro\\":"src/"
"Hasokeyk\\InstagramPro\\":"src/InstagramPro"
}
}
}
3 changes: 2 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/media/pin-timeline_media.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down
2 changes: 1 addition & 1 deletion examples/media/post-like-unlike.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down
2 changes: 1 addition & 1 deletion examples/media/story-like.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down
2 changes: 1 addition & 1 deletion examples/user/duo-two-factor-login.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down
2 changes: 1 addition & 1 deletion examples/user/two-factor-login.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use Hasokeyk\InstagramPro\Instagram;
use Hasokeyk\Interfaces\Instagram;

set_time_limit(0);

Expand Down
4 changes: 2 additions & 2 deletions src/InstagramPro/Instagram.php

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/InstagramPro/InstagramLogin.php

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/InstagramPro/InstagramMedias.php

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/InstagramPro/InstagramRequest.php

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/InstagramPro/InstagramSmartEvents.php

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/InstagramPro/InstagramStatistics.php

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/InstagramPro/InstagramUpload.php

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/InstagramPro/InstagramUser.php

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions src/Interfaces/InstagramInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php

interface InstagramInterface{


}
2 changes: 0 additions & 2 deletions src/Interfaces/InstagramLoginInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

namespace Hasokeyk\InstagramPro;

interface InstagramLoginInterface{

public function login();
Expand Down
2 changes: 0 additions & 2 deletions src/Interfaces/InstagramMediasInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

namespace Hasokeyk\InstagramPro;

interface InstagramMediasInterface{

public function get_post_likes($post_id);
Expand Down
2 changes: 0 additions & 2 deletions src/Interfaces/InstagramSmartEventsInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

namespace Hasokeyk\InstagramPro;

interface InstagramSmartEventsInterface{

public function get_fake_following_profile($username);
Expand Down
2 changes: 0 additions & 2 deletions src/Interfaces/InstagramStatisticsInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

namespace Hasokeyk\InstagramPro;

interface InstagramStatisticsInterface{
public function get_user_insights();

Expand Down
3 changes: 1 addition & 2 deletions src/Interfaces/InstagramUserInterface.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<?php

namespace Hasokeyk\InstagramPro;

interface InstagramUserInterface{

public function generate_two_factor_key();

public function get_security_info();
Expand Down

0 comments on commit 7223124

Please sign in to comment.