Skip to content

Commit

Permalink
Version Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ksainc committed Feb 22, 2024
1 parent 247a9cc commit e22bb94
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 40 deletions.
14 changes: 7 additions & 7 deletions lib/Providers/Mail/MailProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function __construct(AccountService $AccountService) {

/**
* An arbitrary unique text string identifying this provider
* @since 29.0.0
* @since 1.0.0
*/
public function id(): string {

Expand All @@ -53,7 +53,7 @@ public function id(): string {

/**
* The localized human frendly name of this provider
* @since 29.0.0
* @since 1.0.0
*/
public function name(): string {

Expand All @@ -63,7 +63,7 @@ public function name(): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function hasServices(string $uid): bool {

Expand All @@ -73,7 +73,7 @@ public function hasServices(string $uid): bool {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function listServices(string $uid): array {

Expand Down Expand Up @@ -106,7 +106,7 @@ public function listServices(string $uid): array {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function createService(string $uid, IService $service): string {

Expand All @@ -119,7 +119,7 @@ public function createService(string $uid, IService $service): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function modifyService(string $uid, IService $service): string {

Expand All @@ -132,7 +132,7 @@ public function modifyService(string $uid, IService $service): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function deleteService(string $uid, IService $service): bool {

Expand Down
14 changes: 7 additions & 7 deletions lib/Providers/Mail/MailService.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function __construct(

/**
* An arbitrary unique text string identifying this service
* @since 29.0.0
* @since 1.0.0
*/
public function id(): string {

Expand All @@ -85,7 +85,7 @@ public function id(): string {

/**
* The localized human frendly name of this provider
* @since 29.0.0
* @since 1.0.0
*/
public function getLabel(): string {

Expand All @@ -95,7 +95,7 @@ public function getLabel(): string {

/**
* The localized human frendly name of this provider
* @since 29.0.0
* @since 1.0.0
*/
public function setLabel(string $value) {

Expand All @@ -105,7 +105,7 @@ public function setLabel(string $value) {

/**
* The localized human frendly name of this provider
* @since 29.0.0
* @since 1.0.0
*/
public function getIdentity(): IServiceIdentity {

Expand All @@ -115,7 +115,7 @@ public function getIdentity(): IServiceIdentity {

/**
* The localized human frendly name of this provider
* @since 29.0.0
* @since 1.0.0
*/
public function setIdentity(IServiceIdentity $value) {

Expand All @@ -125,7 +125,7 @@ public function setIdentity(IServiceIdentity $value) {

/**
* The localized human frendly name of this provider
* @since 29.0.0
* @since 1.0.0
*/
public function getLocation(): IServiceLocation {

Expand All @@ -135,7 +135,7 @@ public function getLocation(): IServiceLocation {

/**
* The localized human frendly name of this provider
* @since 29.0.0
* @since 1.0.0
*/
public function setLocation(IServiceLocation $value) {

Expand Down
10 changes: 5 additions & 5 deletions lib/Providers/Mail/MailServiceIdentityBAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct(

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function id(): string {

Expand All @@ -55,7 +55,7 @@ public function id(): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function getIdentity(): string {

Expand All @@ -65,7 +65,7 @@ public function getIdentity(): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function setIdentity(string $value) {

Expand All @@ -75,7 +75,7 @@ public function setIdentity(string $value) {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function getSecret(): string {

Expand All @@ -85,7 +85,7 @@ public function getSecret(): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function setSecret(string $value) {

Expand Down
22 changes: 11 additions & 11 deletions lib/Providers/Mail/MailServiceIdentityOAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function __construct(

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function id(): string {

Expand All @@ -60,7 +60,7 @@ public function id(): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function getAccessToken(): string {

Expand All @@ -70,7 +70,7 @@ public function getAccessToken(): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function setAccessToken(string $value) {

Expand All @@ -80,7 +80,7 @@ public function setAccessToken(string $value) {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function getAccessScope(): array {

Expand All @@ -90,7 +90,7 @@ public function getAccessScope(): array {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function setAccessScope(array $value) {

Expand All @@ -100,7 +100,7 @@ public function setAccessScope(array $value) {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function getAccessExpiry(): int {

Expand All @@ -110,7 +110,7 @@ public function getAccessExpiry(): int {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function setAccessExpiry(int $value) {

Expand All @@ -120,7 +120,7 @@ public function setAccessExpiry(int $value) {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function getRefreshToken(): string {

Expand All @@ -130,7 +130,7 @@ public function getRefreshToken(): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function setRefreshToken(string $value) {

Expand All @@ -140,7 +140,7 @@ public function setRefreshToken(string $value) {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function getRefreshLocation(): string {

Expand All @@ -150,7 +150,7 @@ public function getRefreshLocation(): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function setRefreshLocation(string $value) {

Expand Down
20 changes: 10 additions & 10 deletions lib/Providers/Mail/MailServiceLocation.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function __construct(

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function type(): string {

Expand All @@ -61,7 +61,7 @@ public function type(): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function location(): string {

Expand All @@ -76,7 +76,7 @@ public function location(): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function getScheme(): string {

Expand All @@ -86,7 +86,7 @@ public function getScheme(): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function setScheme(string $value) {

Expand All @@ -96,7 +96,7 @@ public function setScheme(string $value) {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function getHost(): string {

Expand All @@ -106,7 +106,7 @@ public function getHost(): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function setHost(string $value) {

Expand All @@ -116,7 +116,7 @@ public function setHost(string $value) {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function getPort(): int {

Expand All @@ -126,7 +126,7 @@ public function getPort(): int {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function setPort(int $value) {

Expand All @@ -136,7 +136,7 @@ public function setPort(int $value) {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function getPath(): string {

Expand All @@ -146,7 +146,7 @@ public function getPath(): string {

/**
*
* @since 29.0.0
* @since 1.0.0
*/
public function setPath(string $value) {

Expand Down

0 comments on commit e22bb94

Please sign in to comment.