File tree Expand file tree Collapse file tree 6 files changed +41
-1
lines changed
src/LaunchDarkly/Impl/Integrations Expand file tree Collapse file tree 6 files changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -4,5 +4,6 @@ composer.phar
4
4
.php_cs.cache
5
5
composer.lock
6
6
docs /build
7
+ docs /.phpdoc
7
8
phpunit /
8
9
.phpunit.result.cache
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # This script assumes that it is running in a Docker container using the image
4
+ # "ldcircleci/php-sdk-release", defined in https://github.com/launchdarkly/sdks-ci-docker
5
+
6
+ set -e
7
+
8
+ cd docs
9
+ make
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ publications:
4
4
5
5
circleci :
6
6
linux :
7
- image : ldcircleci/ld- php-sdk-release:1 # built in sdks-ci-docker project, contains PHP 7.2 + phpDocumentor
7
+ image : ldcircleci/php-sdk-release:1 # built in sdks-ci-docker project, contains PHP 7.3 + phpDocumentor
8
8
9
9
documentation :
10
10
githubPages : true
11
+ title : LaunchDarkly PHP SDK phpredis integration
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -e
4
+
5
+ # Releaser will publish the docs to GitHub pages for us if we put a "docs.zip" artifact in ./artifacts
6
+
7
+ mkdir -p artifacts
8
+ pushd docs/build/html
9
+ rm -f docs.zip
10
+ zip -r docs.zip *
11
+ popd
12
+ mv docs/build/html/docs.zip artifacts
Original file line number Diff line number Diff line change
1
+
2
+ SOURCE_DIR = $(shell cd .. && pwd)
3
+ PHPDOCUMENTOR = php $(LDTOOLS_DIR ) /php/phpDocumentor.phar
4
+
5
+ .PHONY : html
6
+
7
+ html :
8
+ rm -rf build/temp build/html
9
+ $(PHPDOCUMENTOR ) \
10
+ -d $(SOURCE_DIR ) /src \
11
+ -t build/html \
12
+ --visibility public \
13
+ --defaultpackagename " SDK" \
14
+ --title " ${LD_RELEASE_DOCS_TITLE} ${LD_RELEASE_VERSION} "
Original file line number Diff line number Diff line change 3
3
4
4
use LaunchDarkly \Impl \Integrations \FeatureRequesterBase ;
5
5
6
+ /**
7
+ * @internal
8
+ */
6
9
class PHPRedisFeatureRequester extends FeatureRequesterBase
7
10
{
8
11
/** @var array */
You can’t perform that action at this time.
0 commit comments