Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/settings.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Used by Probot Settings: https://probot.github.io/apps/settings/
repository:
description: Manage the wp-config.php file.
description: Generates and reads the wp-config.php file.
labels:
- name: bug
color: fc2929
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
wp-cli/config-command
=====================

Manage the wp-config.php file.
Generates and reads the wp-config.php file.

[![Build Status](https://travis-ci.org/wp-cli/config-command.svg?branch=master)](https://travis-ci.org/wp-cli/config-command)

Expand All @@ -13,7 +13,7 @@ This package implements the following commands:

### wp config

Creates and retrieves the wp-config.php file.
Generates and reads the wp-config.php file.

~~~
wp config
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wp-cli/config-command",
"description": "Manage the wp-config.php file.",
"description": "Generates and reads the wp-config.php file.",
"type": "wp-cli-package",
"homepage": "https://github.com/wp-cli/config-command",
"support": {
Expand Down
2 changes: 1 addition & 1 deletion src/Config_Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
use \WP_CLI\Utils;

/**
* Creates and retrieves the wp-config.php file.
* Generates and reads the wp-config.php file.
*/
class Config_Command extends WP_CLI_Command {

Expand Down