Skip to content

Commit c3f48f2

Browse files
authored
use Releaser PHP project template (#73)
* use Releaser PHP project template * exclude implementation classes from docs
1 parent 5f70f18 commit c3f48f2

14 files changed

+40
-41
lines changed

.ldrelease/build-docs.sh

Lines changed: 0 additions & 9 deletions
This file was deleted.

.ldrelease/config.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ publications:
99
description: Packagist
1010

1111
jobs:
12-
- docker:
13-
image: ldcircleci/php-sdk-release:1 # built in sdks-ci-docker project, contains PHP 7.3 + phpDocumentor 3
12+
- template:
13+
name: php
1414

1515
documentation:
1616
gitHubPages: true
17+
title: "LaunchDarkly PHP SDK"
1718

1819
sdk:
1920
displayName: "PHP"

.ldrelease/publish-docs.sh

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/Makefile

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/LaunchDarkly/Impl/Events/EventFactory.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
use LaunchDarkly\Impl\Util;
88
use LaunchDarkly\Impl\Model\FeatureFlag;
99

10+
/**
11+
* @ignore
12+
* @internal
13+
*/
1014
class EventFactory
1115
{
1216
/** @var boolean */

src/LaunchDarkly/Impl/Events/NullEventProcessor.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
<?php
22
namespace LaunchDarkly\Impl\Events;
33

4+
/**
5+
* @ignore
6+
* @internal
7+
*/
48
class NullEventProcessor extends EventProcessor
59
{
610
public function enqueue($event): bool

src/LaunchDarkly/Impl/Integrations/ApcFeatureRequesterCache.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33

44
/**
55
* Deprecated caching implementation based on the APC extension.
6+
*
7+
* @ignore
8+
* @internal
69
*/
710
class ApcFeatureRequesterCache implements FeatureRequesterCache
811
{

src/LaunchDarkly/Impl/Integrations/ApcuFeatureRequesterCache.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
/**
55
* Caching implementation based on the APCu extension. This is used by default by all database feature
66
* requester implementations if the 'apc_expiration' property is set.
7+
*
8+
* @ignore
9+
* @internal
710
*/
811
class ApcuFeatureRequesterCache implements FeatureRequesterCache
912
{

src/LaunchDarkly/Impl/Integrations/CurlEventPublisher.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66

77
/**
88
* Curl-based implementation of sending events. This is used by default.
9+
*
10+
* @ignore
11+
* @internal
912
*/
1013
class CurlEventPublisher implements EventPublisher
1114
{

src/LaunchDarkly/Impl/Integrations/FeatureRequesterBase.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
use Psr\Log\LoggerInterface;
88
use Psr\Log\NullLogger;
99

10+
/**
11+
* @ignore
12+
* @internal
13+
*/
1014
class FeatureRequesterBase implements FeatureRequester
1115
{
1216
const FEATURES_NAMESPACE = 'features';

0 commit comments

Comments
 (0)