From b0b72f6e7eb67f9940fd250cf8d9ee6543edb75b Mon Sep 17 00:00:00 2001
From: jrfnl <jrfnl@users.noreply.github.com>
Date: Fri, 22 Jul 2022 16:22:51 +0200
Subject: [PATCH] CS: fix indentation of multi-line chained method calls
---
tests/phpunit/tests/rest-api/rest-server.php | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/phpunit/tests/rest-api/rest-server.php b/tests/phpunit/tests/rest-api/rest-server.php
index 06beab745a..8788a72445 100644
|
a
|
b
|
class Tests_REST_Server extends WP_Test_REST_TestCase { |
| 593 | 593 | |
| 594 | 594 | public function test_json_error_with_status() { |
| 595 | 595 | $stub = $this->getMockBuilder( 'Spy_REST_Server' ) |
| 596 | | ->setMethods( array( 'set_status' ) ) |
| 597 | | ->getMock(); |
| | 596 | ->setMethods( array( 'set_status' ) ) |
| | 597 | ->getMock(); |
| 598 | 598 | |
| 599 | 599 | $stub->expects( $this->once() ) |
| 600 | 600 | ->method( 'set_status' ) |