Skip to content

Commit 04e0cf9

Browse files
authored
Merge pull request #22449 from nextcloud/stable18-phpdoc
[stable18] Add php docs build script
2 parents b1169ca + 100e005 commit 04e0cf9

File tree

223 files changed

+11
-223
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

223 files changed

+11
-223
lines changed

build/phpDocumentor.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
3+
# Use a cached version of phpDocumentor for now since there is no release yet
4+
# and the github actions artifacts might disappear
5+
# This phar is downloaded from https://github.com/phpDocumentor/phpDocumentor/actions/runs/221599704
6+
7+
wget https://bitgrid.net/~jus/phpDocumentor.phar
8+
9+
mkdir -p api/
10+
11+
php7.4 phpDocumentor.phar -t "./api" -d "./lib/public" --title="Nextcloud PHP API ($BRANCH)"

lib/public/Accounts/IAccount.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
* Interface IAccount
3333
*
3434
* @since 15.0.0
35-
* @package OCP\Accounts
3635
*/
3736
interface IAccount extends \JsonSerializable {
3837

lib/public/Accounts/IAccountManager.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
*
3434
* @since 15.0.0
3535
*
36-
* @package OCP\Accounts
3736
*/
3837
interface IAccountManager {
3938

lib/public/Accounts/IAccountProperty.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
/**
3030
* Interface IAccountProperty
3131
*
32-
* @package OCP\Account
3332
* @since 15.0.0
3433
*/
3534
interface IAccountProperty extends \JsonSerializable {

lib/public/Accounts/PropertyDoesNotExistException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
*
2929
* @since 15.0.0
3030
*
31-
* @package OCP\Accounts
3231
*/
3332
class PropertyDoesNotExistException extends \Exception {
3433

lib/public/Activity/IConsumer.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
/**
3737
* Interface IConsumer
3838
*
39-
* @package OCP\Activity
4039
* @since 6.0.0
4140
*/
4241
interface IConsumer {

lib/public/Activity/IEvent.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
/**
3939
* Interface IEvent
4040
*
41-
* @package OCP\Activity
4241
* @since 8.2.0
4342
*/
4443
interface IEvent {

lib/public/Activity/IEventMerger.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
/**
2828
* Interface EventMerger
2929
*
30-
* @package OCP\Activity
3130
* @since 11.0
3231
*/
3332
interface IEventMerger {

lib/public/Activity/IExtension.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
/**
2929
* Interface IExtension
3030
*
31-
* @package OCP\Activity
3231
* @since 8.0.0
3332
*/
3433
interface IExtension {

lib/public/Activity/IFilter.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
/**
2727
* Interface IFilter
2828
*
29-
* @package OCP\Activity
3029
* @since 11.0.0
3130
*/
3231
interface IFilter {

0 commit comments

Comments
 (0)