Skip to content

Commit

Permalink
Add missing internal annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrech committed May 3, 2024
1 parent 14eb53a commit 24d49ed
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Driver/DriverInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
use Joli\JoliNotif\Exception\InvalidNotificationException;
use Joli\JoliNotif\Notification;

/**
* @internal
*/
interface DriverInterface
{
public const PRIORITY_LOW = 0;
Expand Down
5 changes: 5 additions & 0 deletions src/Driver/LibNotifyDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
use Joli\JoliNotif\Util\PharExtractor;
use JoliCode\PhpOsHelper\OsHelper;

/**
* This driver can be used on Linux systems when libnotify and FFI are available.
*
* @internal
*/
class LibNotifyDriver implements DriverInterface
{
private const APP_NAME = 'JoliNotif';
Expand Down
2 changes: 2 additions & 0 deletions src/Driver/SnoreToastDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
/**
* This driver can be used on Windows Eight and higher and provides its own
* binaries if not natively available.
*
* @internal
*/
class SnoreToastDriver extends AbstractCliBasedDriver implements BinaryProviderInterface
{
Expand Down

0 comments on commit 24d49ed

Please sign in to comment.