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
44.php_cs.cache
55composer.lock
66docs /build
7+ docs /.phpdoc
78phpunit /
89.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:
44
55circleci :
66 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
88
99documentation :
1010 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 33
44use LaunchDarkly \Impl \Integrations \FeatureRequesterBase ;
55
6+ /**
7+ * @internal
8+ */
69class PHPRedisFeatureRequester extends FeatureRequesterBase
710{
811 /** @var array */
You can’t perform that action at this time.
0 commit comments