Skip to content

Commit

Permalink
Cleanup naming
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev committed Sep 2, 2024
1 parent 71a5486 commit 4d08828
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# OpenTSDB PHP HTTP API Client
# PHP OpenTSDB HTTP API Client

<p align="center">
<a href="https://discord.gg/A8Phy8yJH6"><img src="https://img.shields.io/static/v1?logo=discord&label=&message=Discord&color=36393f&style=flat-square" alt="Discord"></a>
Expand Down Expand Up @@ -57,7 +57,7 @@ $openTsdbClient = new \Cog\OpenTsdbClient\OpenTsdbClient(
'http_errors' => false,
],
),
baseUri: 'http://localhost:4242',
baseUri: 'http://opentsdb:4242',
);

$openTsdbClient->sendDataPointList($dataPointList);
Expand All @@ -71,7 +71,7 @@ $openTsdbClient->sendDataPointList($dataPointList);

## License

- `OpenTSDB PHP Client` package is open-sourced software licensed under the [MIT license](LICENSE) by [Anton Komarev].
- `PHP OpenTSDB HTTP API Client` package is open-sourced software licensed under the [MIT license](LICENSE) by [Anton Komarev].

## 🌟 Stargazers over time

Expand Down
2 changes: 1 addition & 1 deletion src/DataPoint.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of OpenTSDB PHP Client.
* This file is part of PHP OpenTSDB HTTP API Client.
*
* (c) Anton Komarev <[email protected]>
*
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/OpenTsdbConnectionException.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of OpenTSDB PHP Client.
* This file is part of PHP OpenTSDB HTTP API Client.
*
* (c) Anton Komarev <[email protected]>
*
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/OpenTsdbException.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of OpenTSDB PHP Client.
* This file is part of PHP OpenTSDB HTTP API Client.
*
* (c) Anton Komarev <[email protected]>
*
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/OpenTsdbExceptionInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of OpenTSDB PHP Client.
* This file is part of PHP OpenTSDB HTTP API Client.
*
* (c) Anton Komarev <[email protected]>
*
Expand Down
2 changes: 1 addition & 1 deletion src/OpenTsdbClient.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of OpenTSDB PHP Client.
* This file is part of PHP OpenTSDB HTTP API Client.
*
* (c) Anton Komarev <[email protected]>
*
Expand Down
2 changes: 1 addition & 1 deletion src/SendDataPointListResponse.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of OpenTSDB PHP Client.
* This file is part of PHP OpenTSDB HTTP API Client.
*
* (c) Anton Komarev <[email protected]>
*
Expand Down
2 changes: 1 addition & 1 deletion test/Integration/OpenTsdbClientTest.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of OpenTSDB PHP Client.
* This file is part of PHP OpenTSDB HTTP API Client.
*
* (c) Anton Komarev <[email protected]>
*
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/DataPointTest.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* This file is part of OpenTSDB PHP Client.
* This file is part of PHP OpenTSDB HTTP API Client.
*
* (c) Anton Komarev <[email protected]>
*
Expand Down

0 comments on commit 4d08828

Please sign in to comment.