Skip to content

Commit

Permalink
chore: whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
justlevine committed Apr 6, 2024
1 parent 9ca8240 commit 30c3ecc
Show file tree
Hide file tree
Showing 12 changed files with 0 additions and 15 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ composer require axewp/wp-graphql-plugin-boilerplate
},
```


### As a plugin starter

#### 1. Initialize the plugin
Expand Down
1 change: 0 additions & 1 deletion src/Helper/Helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

declare( strict_types=1 );


namespace AxeWP\GraphQL\Helper;

if ( ! class_exists( '\AxeWP\GraphQL\Helper\Helper' ) ) {
Expand Down
1 change: 0 additions & 1 deletion wp-graphql-plugin-name/bin/_lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ configure_wordpress() {
wp rewrite structure '/%year%/%monthnum%/%postname%/'
}


install_plugins() {
cd $WP_CORE_DIR

Expand Down
4 changes: 0 additions & 4 deletions wp-graphql-plugin-name/docker/testing.entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ run_tests() {
wp maintenance-mode deactivate --allow-root
fi


# Suites is the comma separated list of suites/tests to run.
echo "Running Test Suite $suites"
vendor/bin/codecept run -c codeception.dist.yml "${suites}" ${coverage:-} ${debug:-} --no-exit
Expand Down Expand Up @@ -83,14 +82,12 @@ if [ ! -f "$PROJECT_DIR/c3.php" ]; then
curl -L 'https://raw.github.com/Codeception/c3/2.0/c3.php' > "$PROJECT_DIR/c3.php"
fi


# Install the PHP dependencies
echo "Running composer update"
COMPOSER_MEMORY_LIMIT=-1 composer update
echo "Running composer install"
COMPOSER_MEMORY_LIMIT=-1 composer install --no-interaction


# Install pcov/clobber if PHP7.1+
if version_gt $PHP_VERSION 7.0 && [[ -n "$COVERAGE" ]] && [[ -z "$USING_XDEBUG" ]]; then
echo "Using pcov/clobber for codecoverage"
Expand Down Expand Up @@ -149,7 +146,6 @@ if [ -n "$(ls "$TESTS_OUTPUT")" ]; then
chmod 777 -R "$TESTS_OUTPUT"/*
fi


# Check results and exit accordingly.
if [ -f "${TESTS_OUTPUT}/failed" ]; then
echo "Uh oh, something went wrong."
Expand Down
1 change: 0 additions & 1 deletion wp-graphql-plugin-name/tests/_support/AcceptanceTester.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?php


/**
* Inherited Methods
* @method void wantToTest($text)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?php


/**
* Inherited Methods
* @method void wantToTest($text)
Expand Down
1 change: 0 additions & 1 deletion wp-graphql-plugin-name/tests/_support/FunctionalTester.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?php


/**
* Inherited Methods
* @method void wantToTest($text)
Expand Down
1 change: 0 additions & 1 deletion wp-graphql-plugin-name/tests/_support/Helper/Unit.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@

class Unit extends \Codeception\Module {


}
1 change: 0 additions & 1 deletion wp-graphql-plugin-name/tests/_support/UnitTester.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?php


/**
* Inherited Methods
* @method void wantToTest($text)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?php


/**
* Inherited Methods
* @method void wantToTest($text)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

declare( strict_types=1 );


namespace WPGraphQL\PluginName\Vendor\AxeWP\GraphQL\Helper;

if ( ! class_exists( '\WPGraphQL\PluginName\Vendor\AxeWP\GraphQL\Helper\Helper' ) ) {
Expand Down
1 change: 0 additions & 1 deletion wp-graphql-plugin-name/wp-graphql-plugin-name.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
register_activation_hook( __FILE__, 'graphql_pb_deactivation_callback' );
}


/**
* Define plugin constants.
*/
Expand Down

0 comments on commit 30c3ecc

Please sign in to comment.