Completed
Push — develop ( 316159...00443b )
by Zack
20:22
created
vendor/brianhenryie/strauss/tests/Integration/CopierIntegrationTest.php 4 patches
Indentation   +194 added lines, -194 removed lines patch added patch discarded remove patch
@@ -18,10 +18,10 @@  discard block
 block discarded – undo
18 18
 class CopierIntegrationTest extends IntegrationTestCase
19 19
 {
20 20
 
21
-    public function testsPrepareTarget()
22
-    {
21
+	public function testsPrepareTarget()
22
+	{
23 23
 
24
-        $composerJsonString = <<<'EOD'
24
+		$composerJsonString = <<<'EOD'
25 25
 {
26 26
   "name": "brianhenryie/strauss",
27 27
   "require": {
@@ -37,50 +37,50 @@  discard block
 block discarded – undo
37 37
 }
38 38
 EOD;
39 39
 
40
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
40
+		file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
41 41
 
42
-        chdir($this->testsWorkingDir);
42
+		chdir($this->testsWorkingDir);
43 43
 
44
-        exec('composer install');
44
+		exec('composer install');
45 45
 
46
-        $projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
46
+		$projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
47 47
 
48
-        $dependencies = array_map(function ($element) {
49
-            $dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
50
-            return new ComposerPackage($dir);
51
-        }, $projectComposerPackage->getRequiresNames());
48
+		$dependencies = array_map(function ($element) {
49
+			$dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
50
+			return new ComposerPackage($dir);
51
+		}, $projectComposerPackage->getRequiresNames());
52 52
 
53
-        $workingDir = $this->testsWorkingDir;
54
-        $relativeTargetDir = 'strauss' . DIRECTORY_SEPARATOR;
53
+		$workingDir = $this->testsWorkingDir;
54
+		$relativeTargetDir = 'strauss' . DIRECTORY_SEPARATOR;
55 55
 
56
-        $config = $this->createStub(StraussConfig::class);
56
+		$config = $this->createStub(StraussConfig::class);
57 57
 
58
-        $fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
59
-        $fileEnumerator->compileFileList();
60
-        $filepaths = $fileEnumerator->getAllFilesAndDependencyList();
58
+		$fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
59
+		$fileEnumerator->compileFileList();
60
+		$filepaths = $fileEnumerator->getAllFilesAndDependencyList();
61 61
 
62
-        $copier = new Copier($filepaths, $workingDir, $relativeTargetDir);
62
+		$copier = new Copier($filepaths, $workingDir, $relativeTargetDir);
63 63
 
64
-        $file = 'ContainerAwareTrait.php';
65
-        $relativePath = 'league/container/src/';
66
-        $targetPath = $this->testsWorkingDir . $relativeTargetDir . $relativePath;
67
-        $targetFile = $targetPath . $file;
64
+		$file = 'ContainerAwareTrait.php';
65
+		$relativePath = 'league/container/src/';
66
+		$targetPath = $this->testsWorkingDir . $relativeTargetDir . $relativePath;
67
+		$targetFile = $targetPath . $file;
68 68
 
69
-        mkdir(rtrim($targetPath, DIRECTORY_SEPARATOR), 0777, true);
69
+		mkdir(rtrim($targetPath, DIRECTORY_SEPARATOR), 0777, true);
70 70
 
71
-        file_put_contents($targetFile, 'dummy file');
71
+		file_put_contents($targetFile, 'dummy file');
72 72
 
73
-        assert(file_exists($targetFile));
73
+		assert(file_exists($targetFile));
74 74
 
75
-        $copier->prepareTarget();
75
+		$copier->prepareTarget();
76 76
 
77
-        $this->assertFileDoesNotExist($targetFile);
78
-    }
77
+		$this->assertFileDoesNotExist($targetFile);
78
+	}
79 79
 
80
-    public function testsCopy()
81
-    {
80
+	public function testsCopy()
81
+	{
82 82
 
83
-        $composerJsonString = <<<'EOD'
83
+		$composerJsonString = <<<'EOD'
84 84
 {
85 85
   "name": "brianhenryie/strauss",
86 86
   "require": {
@@ -96,183 +96,183 @@  discard block
 block discarded – undo
96 96
 }
97 97
 EOD;
98 98
 
99
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
99
+		file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
100 100
 
101
-        chdir($this->testsWorkingDir);
101
+		chdir($this->testsWorkingDir);
102 102
 
103
-        exec('composer install');
103
+		exec('composer install');
104 104
 
105
-        $projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
105
+		$projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
106 106
 
107
-        $dependencies = array_map(function ($element) {
108
-            $dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
109
-            return new ComposerPackage($dir);
110
-        }, $projectComposerPackage->getRequiresNames());
107
+		$dependencies = array_map(function ($element) {
108
+			$dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
109
+			return new ComposerPackage($dir);
110
+		}, $projectComposerPackage->getRequiresNames());
111 111
 
112
-        $workingDir = $this->testsWorkingDir;
113
-        $relativeTargetDir = 'strauss' . DIRECTORY_SEPARATOR;
114
-        $config = $this->createStub(StraussConfig::class);
115
-        $fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
116
-        $fileEnumerator->compileFileList();
117
-        $filepaths = $fileEnumerator->getAllFilesAndDependencyList();
112
+		$workingDir = $this->testsWorkingDir;
113
+		$relativeTargetDir = 'strauss' . DIRECTORY_SEPARATOR;
114
+		$config = $this->createStub(StraussConfig::class);
115
+		$fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
116
+		$fileEnumerator->compileFileList();
117
+		$filepaths = $fileEnumerator->getAllFilesAndDependencyList();
118 118
 
119
-        $copier = new Copier($filepaths, $workingDir, $relativeTargetDir);
119
+		$copier = new Copier($filepaths, $workingDir, $relativeTargetDir);
120 120
 
121
-        $file = 'Client.php';
122
-        $relativePath = 'google/apiclient/src/';
123
-        $targetPath = $this->testsWorkingDir . $relativeTargetDir . $relativePath;
124
-        $targetFile = $targetPath . $file;
121
+		$file = 'Client.php';
122
+		$relativePath = 'google/apiclient/src/';
123
+		$targetPath = $this->testsWorkingDir . $relativeTargetDir . $relativePath;
124
+		$targetFile = $targetPath . $file;
125 125
 
126
-        $copier->prepareTarget();
126
+		$copier->prepareTarget();
127 127
 
128
-        $copier->copy();
128
+		$copier->copy();
129 129
 
130
-        $this->assertFileExists($targetFile);
131
-    }
130
+		$this->assertFileExists($targetFile);
131
+	}
132 132
 
133 133
 
134 134
 
135 135
 
136
-    /**
137
-     * Set up a common settings object.
138
-     * @see MoverTest.php
139
-     */
140
-    protected function createComposer(): void
141
-    {
136
+	/**
137
+	 * Set up a common settings object.
138
+	 * @see MoverTest.php
139
+	 */
140
+	protected function createComposer(): void
141
+	{
142 142
 //        parent::setUp();
143 143
 
144
-        $this->testsWorkingDir = __DIR__ . '/temptestdir/';
145
-        if (!file_exists($this->testsWorkingDir)) {
146
-            mkdir($this->testsWorkingDir);
147
-        }
148
-
149
-        $mozartConfig = new stdClass();
150
-        $mozartConfig->dep_directory = "/dep_directory/";
151
-        $mozartConfig->classmap_directory = "/classmap_directory/";
152
-        $mozartConfig->packages = array(
153
-            "pimple/pimple",
154
-            "ezyang/htmlpurifier"
155
-        );
156
-
157
-        $pimpleAutoload = new stdClass();
158
-        $pimpleAutoload->{'psr-0'} = new stdClass();
159
-        $pimpleAutoload->{'psr-0'}->Pimple = "src/";
160
-
161
-        $htmlpurifierAutoload = new stdClass();
162
-        $htmlpurifierAutoload->classmap = new stdClass();
163
-        $htmlpurifierAutoload->classmap->Pimple = "library/";
164
-
165
-        $mozartConfig->override_autoload = array();
166
-        $mozartConfig->override_autoload["pimple/pimple"] = $pimpleAutoload;
167
-        $mozartConfig->override_autoload["ezyang/htmlpurifier"] = $htmlpurifierAutoload;
168
-
169
-        $composer = new stdClass();
170
-        $composer->extra = new stdClass();
171
-        $composer->extra->mozart = $mozartConfig;
172
-
173
-        $composerFilepath = $this->testsWorkingDir . '/composer.json';
174
-        $composerJson = json_encode($composer) ;
175
-        file_put_contents($composerFilepath, $composerJson);
176
-
177
-        $this->config = StraussConfig::loadFromFile($composerFilepath);
178
-    }
179
-
180
-    /**
181
-     * If the specified `dep_directory` or `classmap_directory` are absent, create them.
182
-     * @see MoverTest.php
183
-     * @test
184
-     */
185
-    public function it_creates_absent_dirs(): void
186
-    {
187
-        $this->markTestIncomplete();
188
-
189
-        $mover = new Mover($this->testsWorkingDir, $this->config);
190
-
191
-        // Make sure the directories don't exist.
192
-        assert(! file_exists($this->testsWorkingDir . $this->config->gett()), "{$this->testsWorkingDir}{$this->config->getDepDirectory()} already exists");
193
-        assert(! file_exists($this->testsWorkingDir . $this->config->getClassmapDirectory()));
194
-
195
-        $packages = array();
196
-
197
-        $mover->deleteTargetDirs($packages);
198
-
199
-        $this->assertTrue(file_exists($this->testsWorkingDir
200
-            . $this->config->getDepDirectory()));
201
-        $this->assertTrue(file_exists($this->testsWorkingDir
202
-            . $this->config->getClassmapDirectory()));
203
-    }
204
-
205
-    /**
206
-     * If the specified `dep_directory` or `classmap_directory` already exists with contents, it is not an issue.
207
-     *
208
-     * @see MoverTest.php
209
-     *
210
-     * @test
211
-     */
212
-    public function it_is_unpertrubed_by_existing_dirs(): void
213
-    {
214
-        $this->markTestIncomplete();
215
-
216
-        $mover = new Mover($this->testsWorkingDir, $this->config);
217
-
218
-        if (!file_exists($this->testsWorkingDir . $this->config->getDepDirectory())) {
219
-            mkdir($this->testsWorkingDir . $this->config->getDepDirectory());
220
-        }
221
-        if (!file_exists($this->testsWorkingDir . $this->config->getClassmapDirectory())) {
222
-            mkdir($this->testsWorkingDir . $this->config->getClassmapDirectory());
223
-        }
224
-
225
-        $this->assertDirectoryExists($this->testsWorkingDir . $this->config->getDepDirectory());
226
-        $this->assertDirectoryExists($this->testsWorkingDir . $this->config->getClassmapDirectory());
227
-
228
-        $packages = array();
229
-
230
-        ob_start();
231
-
232
-        $mover->deleteTargetDirs($packages);
233
-
234
-        $output = ob_get_clean();
235
-
236
-        $this->assertEmpty($output);
237
-    }
238
-
239
-    /**
240
-     * If the specified `dep_directory` or `classmap_directory` contains a subdir we are going to need when moving,
241
-     * delete the subdir. aka:  If subfolders exist for dependencies we are about to manage, delete those subfolders.
242
-     *
243
-     * @see MoverTest.php
244
-     *
245
-     * @test
246
-     */
247
-    public function it_deletes_subdirs_for_packages_about_to_be_moved(): void
248
-    {
249
-        $this->markTestIncomplete();
250
-
251
-        $mover = new Mover($this->testsWorkingDir, $this->config);
252
-
253
-        @mkdir($this->testsWorkingDir . $this->config->getDepDirectory());
254
-        @mkdir($this->testsWorkingDir . $this->config->getClassmapDirectory());
255
-
256
-        @mkdir($this->testsWorkingDir . $this->config->getDepDirectory() . 'Pimple');
257
-        @mkdir($this->testsWorkingDir . $this->config->getClassmapDirectory() . 'ezyang');
258
-
259
-        $packages = array();
260
-        foreach ($this->config->getPackages() as $packageString) {
261
-            $testDummyComposerDir = $this->testsWorkingDir  . 'vendor'
262
-                . DIRECTORY_SEPARATOR . $packageString;
263
-            @mkdir($testDummyComposerDir, 0777, true);
264
-            $testDummyComposerPath = $testDummyComposerDir . DIRECTORY_SEPARATOR . 'composer.json';
265
-            $testDummyComposerContents = json_encode(new stdClass());
266
-
267
-            file_put_contents($testDummyComposerPath, $testDummyComposerContents);
268
-            $parsedPackage = new ComposerPackageConfig($testDummyComposerDir, $this->config->getOverrideAutoload()[$packageString]);
269
-            $parsedPackage->findAutoloaders();
270
-            $packages[] = $parsedPackage;
271
-        }
272
-
273
-        $mover->deleteTargetDirs($packages);
274
-
275
-        $this->assertDirectoryDoesNotExist($this->testsWorkingDir . $this->config->getDepDirectory() . 'Pimple');
276
-        $this->assertDirectoryDoesNotExist($this->testsWorkingDir . $this->config->getDepDirectory() . 'ezyang');
277
-    }
144
+		$this->testsWorkingDir = __DIR__ . '/temptestdir/';
145
+		if (!file_exists($this->testsWorkingDir)) {
146
+			mkdir($this->testsWorkingDir);
147
+		}
148
+
149
+		$mozartConfig = new stdClass();
150
+		$mozartConfig->dep_directory = "/dep_directory/";
151
+		$mozartConfig->classmap_directory = "/classmap_directory/";
152
+		$mozartConfig->packages = array(
153
+			"pimple/pimple",
154
+			"ezyang/htmlpurifier"
155
+		);
156
+
157
+		$pimpleAutoload = new stdClass();
158
+		$pimpleAutoload->{'psr-0'} = new stdClass();
159
+		$pimpleAutoload->{'psr-0'}->Pimple = "src/";
160
+
161
+		$htmlpurifierAutoload = new stdClass();
162
+		$htmlpurifierAutoload->classmap = new stdClass();
163
+		$htmlpurifierAutoload->classmap->Pimple = "library/";
164
+
165
+		$mozartConfig->override_autoload = array();
166
+		$mozartConfig->override_autoload["pimple/pimple"] = $pimpleAutoload;
167
+		$mozartConfig->override_autoload["ezyang/htmlpurifier"] = $htmlpurifierAutoload;
168
+
169
+		$composer = new stdClass();
170
+		$composer->extra = new stdClass();
171
+		$composer->extra->mozart = $mozartConfig;
172
+
173
+		$composerFilepath = $this->testsWorkingDir . '/composer.json';
174
+		$composerJson = json_encode($composer) ;
175
+		file_put_contents($composerFilepath, $composerJson);
176
+
177
+		$this->config = StraussConfig::loadFromFile($composerFilepath);
178
+	}
179
+
180
+	/**
181
+	 * If the specified `dep_directory` or `classmap_directory` are absent, create them.
182
+	 * @see MoverTest.php
183
+	 * @test
184
+	 */
185
+	public function it_creates_absent_dirs(): void
186
+	{
187
+		$this->markTestIncomplete();
188
+
189
+		$mover = new Mover($this->testsWorkingDir, $this->config);
190
+
191
+		// Make sure the directories don't exist.
192
+		assert(! file_exists($this->testsWorkingDir . $this->config->gett()), "{$this->testsWorkingDir}{$this->config->getDepDirectory()} already exists");
193
+		assert(! file_exists($this->testsWorkingDir . $this->config->getClassmapDirectory()));
194
+
195
+		$packages = array();
196
+
197
+		$mover->deleteTargetDirs($packages);
198
+
199
+		$this->assertTrue(file_exists($this->testsWorkingDir
200
+			. $this->config->getDepDirectory()));
201
+		$this->assertTrue(file_exists($this->testsWorkingDir
202
+			. $this->config->getClassmapDirectory()));
203
+	}
204
+
205
+	/**
206
+	 * If the specified `dep_directory` or `classmap_directory` already exists with contents, it is not an issue.
207
+	 *
208
+	 * @see MoverTest.php
209
+	 *
210
+	 * @test
211
+	 */
212
+	public function it_is_unpertrubed_by_existing_dirs(): void
213
+	{
214
+		$this->markTestIncomplete();
215
+
216
+		$mover = new Mover($this->testsWorkingDir, $this->config);
217
+
218
+		if (!file_exists($this->testsWorkingDir . $this->config->getDepDirectory())) {
219
+			mkdir($this->testsWorkingDir . $this->config->getDepDirectory());
220
+		}
221
+		if (!file_exists($this->testsWorkingDir . $this->config->getClassmapDirectory())) {
222
+			mkdir($this->testsWorkingDir . $this->config->getClassmapDirectory());
223
+		}
224
+
225
+		$this->assertDirectoryExists($this->testsWorkingDir . $this->config->getDepDirectory());
226
+		$this->assertDirectoryExists($this->testsWorkingDir . $this->config->getClassmapDirectory());
227
+
228
+		$packages = array();
229
+
230
+		ob_start();
231
+
232
+		$mover->deleteTargetDirs($packages);
233
+
234
+		$output = ob_get_clean();
235
+
236
+		$this->assertEmpty($output);
237
+	}
238
+
239
+	/**
240
+	 * If the specified `dep_directory` or `classmap_directory` contains a subdir we are going to need when moving,
241
+	 * delete the subdir. aka:  If subfolders exist for dependencies we are about to manage, delete those subfolders.
242
+	 *
243
+	 * @see MoverTest.php
244
+	 *
245
+	 * @test
246
+	 */
247
+	public function it_deletes_subdirs_for_packages_about_to_be_moved(): void
248
+	{
249
+		$this->markTestIncomplete();
250
+
251
+		$mover = new Mover($this->testsWorkingDir, $this->config);
252
+
253
+		@mkdir($this->testsWorkingDir . $this->config->getDepDirectory());
254
+		@mkdir($this->testsWorkingDir . $this->config->getClassmapDirectory());
255
+
256
+		@mkdir($this->testsWorkingDir . $this->config->getDepDirectory() . 'Pimple');
257
+		@mkdir($this->testsWorkingDir . $this->config->getClassmapDirectory() . 'ezyang');
258
+
259
+		$packages = array();
260
+		foreach ($this->config->getPackages() as $packageString) {
261
+			$testDummyComposerDir = $this->testsWorkingDir  . 'vendor'
262
+				. DIRECTORY_SEPARATOR . $packageString;
263
+			@mkdir($testDummyComposerDir, 0777, true);
264
+			$testDummyComposerPath = $testDummyComposerDir . DIRECTORY_SEPARATOR . 'composer.json';
265
+			$testDummyComposerContents = json_encode(new stdClass());
266
+
267
+			file_put_contents($testDummyComposerPath, $testDummyComposerContents);
268
+			$parsedPackage = new ComposerPackageConfig($testDummyComposerDir, $this->config->getOverrideAutoload()[$packageString]);
269
+			$parsedPackage->findAutoloaders();
270
+			$packages[] = $parsedPackage;
271
+		}
272
+
273
+		$mover->deleteTargetDirs($packages);
274
+
275
+		$this->assertDirectoryDoesNotExist($this->testsWorkingDir . $this->config->getDepDirectory() . 'Pimple');
276
+		$this->assertDirectoryDoesNotExist($this->testsWorkingDir . $this->config->getDepDirectory() . 'ezyang');
277
+	}
278 278
 }
Please login to merge, or discard this patch.
Spacing   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -37,44 +37,44 @@  discard block
 block discarded – undo
37 37
 }
38 38
 EOD;
39 39
 
40
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
40
+        file_put_contents( $this->testsWorkingDir . '/composer.json', $composerJsonString );
41 41
 
42
-        chdir($this->testsWorkingDir);
42
+        chdir( $this->testsWorkingDir );
43 43
 
44
-        exec('composer install');
44
+        exec( 'composer install' );
45 45
 
46
-        $projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
46
+        $projectComposerPackage = new ProjectComposerPackage( $this->testsWorkingDir );
47 47
 
48
-        $dependencies = array_map(function ($element) {
49
-            $dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
50
-            return new ComposerPackage($dir);
51
-        }, $projectComposerPackage->getRequiresNames());
48
+        $dependencies = array_map( function( $element ) {
49
+            $dir = $this->testsWorkingDir . 'vendor' . DIRECTORY_SEPARATOR . $element;
50
+            return new ComposerPackage( $dir );
51
+        }, $projectComposerPackage->getRequiresNames() );
52 52
 
53 53
         $workingDir = $this->testsWorkingDir;
54 54
         $relativeTargetDir = 'strauss' . DIRECTORY_SEPARATOR;
55 55
 
56
-        $config = $this->createStub(StraussConfig::class);
56
+        $config = $this->createStub( StraussConfig::class );
57 57
 
58
-        $fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
58
+        $fileEnumerator = new FileEnumerator( $dependencies, $workingDir, $config );
59 59
         $fileEnumerator->compileFileList();
60 60
         $filepaths = $fileEnumerator->getAllFilesAndDependencyList();
61 61
 
62
-        $copier = new Copier($filepaths, $workingDir, $relativeTargetDir);
62
+        $copier = new Copier( $filepaths, $workingDir, $relativeTargetDir );
63 63
 
64 64
         $file = 'ContainerAwareTrait.php';
65 65
         $relativePath = 'league/container/src/';
66 66
         $targetPath = $this->testsWorkingDir . $relativeTargetDir . $relativePath;
67 67
         $targetFile = $targetPath . $file;
68 68
 
69
-        mkdir(rtrim($targetPath, DIRECTORY_SEPARATOR), 0777, true);
69
+        mkdir( rtrim( $targetPath, DIRECTORY_SEPARATOR ), 0777, true );
70 70
 
71
-        file_put_contents($targetFile, 'dummy file');
71
+        file_put_contents( $targetFile, 'dummy file' );
72 72
 
73
-        assert(file_exists($targetFile));
73
+        assert( file_exists( $targetFile ) );
74 74
 
75 75
         $copier->prepareTarget();
76 76
 
77
-        $this->assertFileDoesNotExist($targetFile);
77
+        $this->assertFileDoesNotExist( $targetFile );
78 78
     }
79 79
 
80 80
     public function testsCopy()
@@ -96,27 +96,27 @@  discard block
 block discarded – undo
96 96
 }
97 97
 EOD;
98 98
 
99
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
99
+        file_put_contents( $this->testsWorkingDir . '/composer.json', $composerJsonString );
100 100
 
101
-        chdir($this->testsWorkingDir);
101
+        chdir( $this->testsWorkingDir );
102 102
 
103
-        exec('composer install');
103
+        exec( 'composer install' );
104 104
 
105
-        $projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
105
+        $projectComposerPackage = new ProjectComposerPackage( $this->testsWorkingDir );
106 106
 
107
-        $dependencies = array_map(function ($element) {
108
-            $dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
109
-            return new ComposerPackage($dir);
110
-        }, $projectComposerPackage->getRequiresNames());
107
+        $dependencies = array_map( function( $element ) {
108
+            $dir = $this->testsWorkingDir . 'vendor' . DIRECTORY_SEPARATOR . $element;
109
+            return new ComposerPackage( $dir );
110
+        }, $projectComposerPackage->getRequiresNames() );
111 111
 
112 112
         $workingDir = $this->testsWorkingDir;
113 113
         $relativeTargetDir = 'strauss' . DIRECTORY_SEPARATOR;
114
-        $config = $this->createStub(StraussConfig::class);
115
-        $fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
114
+        $config = $this->createStub( StraussConfig::class );
115
+        $fileEnumerator = new FileEnumerator( $dependencies, $workingDir, $config );
116 116
         $fileEnumerator->compileFileList();
117 117
         $filepaths = $fileEnumerator->getAllFilesAndDependencyList();
118 118
 
119
-        $copier = new Copier($filepaths, $workingDir, $relativeTargetDir);
119
+        $copier = new Copier( $filepaths, $workingDir, $relativeTargetDir );
120 120
 
121 121
         $file = 'Client.php';
122 122
         $relativePath = 'google/apiclient/src/';
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 
128 128
         $copier->copy();
129 129
 
130
-        $this->assertFileExists($targetFile);
130
+        $this->assertFileExists( $targetFile );
131 131
     }
132 132
 
133 133
 
@@ -142,8 +142,8 @@  discard block
 block discarded – undo
142 142
 //        parent::setUp();
143 143
 
144 144
         $this->testsWorkingDir = __DIR__ . '/temptestdir/';
145
-        if (!file_exists($this->testsWorkingDir)) {
146
-            mkdir($this->testsWorkingDir);
145
+        if ( ! file_exists( $this->testsWorkingDir ) ) {
146
+            mkdir( $this->testsWorkingDir );
147 147
         }
148 148
 
149 149
         $mozartConfig = new stdClass();
@@ -163,18 +163,18 @@  discard block
 block discarded – undo
163 163
         $htmlpurifierAutoload->classmap->Pimple = "library/";
164 164
 
165 165
         $mozartConfig->override_autoload = array();
166
-        $mozartConfig->override_autoload["pimple/pimple"] = $pimpleAutoload;
167
-        $mozartConfig->override_autoload["ezyang/htmlpurifier"] = $htmlpurifierAutoload;
166
+        $mozartConfig->override_autoload[ "pimple/pimple" ] = $pimpleAutoload;
167
+        $mozartConfig->override_autoload[ "ezyang/htmlpurifier" ] = $htmlpurifierAutoload;
168 168
 
169 169
         $composer = new stdClass();
170 170
         $composer->extra = new stdClass();
171 171
         $composer->extra->mozart = $mozartConfig;
172 172
 
173 173
         $composerFilepath = $this->testsWorkingDir . '/composer.json';
174
-        $composerJson = json_encode($composer) ;
175
-        file_put_contents($composerFilepath, $composerJson);
174
+        $composerJson = json_encode( $composer );
175
+        file_put_contents( $composerFilepath, $composerJson );
176 176
 
177
-        $this->config = StraussConfig::loadFromFile($composerFilepath);
177
+        $this->config = StraussConfig::loadFromFile( $composerFilepath );
178 178
     }
179 179
 
180 180
     /**
@@ -186,20 +186,20 @@  discard block
 block discarded – undo
186 186
     {
187 187
         $this->markTestIncomplete();
188 188
 
189
-        $mover = new Mover($this->testsWorkingDir, $this->config);
189
+        $mover = new Mover( $this->testsWorkingDir, $this->config );
190 190
 
191 191
         // Make sure the directories don't exist.
192
-        assert(! file_exists($this->testsWorkingDir . $this->config->gett()), "{$this->testsWorkingDir}{$this->config->getDepDirectory()} already exists");
193
-        assert(! file_exists($this->testsWorkingDir . $this->config->getClassmapDirectory()));
192
+        assert( ! file_exists( $this->testsWorkingDir . $this->config->gett() ), "{$this->testsWorkingDir}{$this->config->getDepDirectory()} already exists" );
193
+        assert( ! file_exists( $this->testsWorkingDir . $this->config->getClassmapDirectory() ) );
194 194
 
195 195
         $packages = array();
196 196
 
197
-        $mover->deleteTargetDirs($packages);
197
+        $mover->deleteTargetDirs( $packages );
198 198
 
199
-        $this->assertTrue(file_exists($this->testsWorkingDir
200
-            . $this->config->getDepDirectory()));
201
-        $this->assertTrue(file_exists($this->testsWorkingDir
202
-            . $this->config->getClassmapDirectory()));
199
+        $this->assertTrue( file_exists( $this->testsWorkingDir
200
+            . $this->config->getDepDirectory() ) );
201
+        $this->assertTrue( file_exists( $this->testsWorkingDir
202
+            . $this->config->getClassmapDirectory() ) );
203 203
     }
204 204
 
205 205
     /**
@@ -213,27 +213,27 @@  discard block
 block discarded – undo
213 213
     {
214 214
         $this->markTestIncomplete();
215 215
 
216
-        $mover = new Mover($this->testsWorkingDir, $this->config);
216
+        $mover = new Mover( $this->testsWorkingDir, $this->config );
217 217
 
218
-        if (!file_exists($this->testsWorkingDir . $this->config->getDepDirectory())) {
219
-            mkdir($this->testsWorkingDir . $this->config->getDepDirectory());
218
+        if ( ! file_exists( $this->testsWorkingDir . $this->config->getDepDirectory() ) ) {
219
+            mkdir( $this->testsWorkingDir . $this->config->getDepDirectory() );
220 220
         }
221
-        if (!file_exists($this->testsWorkingDir . $this->config->getClassmapDirectory())) {
222
-            mkdir($this->testsWorkingDir . $this->config->getClassmapDirectory());
221
+        if ( ! file_exists( $this->testsWorkingDir . $this->config->getClassmapDirectory() ) ) {
222
+            mkdir( $this->testsWorkingDir . $this->config->getClassmapDirectory() );
223 223
         }
224 224
 
225
-        $this->assertDirectoryExists($this->testsWorkingDir . $this->config->getDepDirectory());
226
-        $this->assertDirectoryExists($this->testsWorkingDir . $this->config->getClassmapDirectory());
225
+        $this->assertDirectoryExists( $this->testsWorkingDir . $this->config->getDepDirectory() );
226
+        $this->assertDirectoryExists( $this->testsWorkingDir . $this->config->getClassmapDirectory() );
227 227
 
228 228
         $packages = array();
229 229
 
230 230
         ob_start();
231 231
 
232
-        $mover->deleteTargetDirs($packages);
232
+        $mover->deleteTargetDirs( $packages );
233 233
 
234 234
         $output = ob_get_clean();
235 235
 
236
-        $this->assertEmpty($output);
236
+        $this->assertEmpty( $output );
237 237
     }
238 238
 
239 239
     /**
@@ -248,31 +248,31 @@  discard block
 block discarded – undo
248 248
     {
249 249
         $this->markTestIncomplete();
250 250
 
251
-        $mover = new Mover($this->testsWorkingDir, $this->config);
251
+        $mover = new Mover( $this->testsWorkingDir, $this->config );
252 252
 
253
-        @mkdir($this->testsWorkingDir . $this->config->getDepDirectory());
254
-        @mkdir($this->testsWorkingDir . $this->config->getClassmapDirectory());
253
+        @mkdir( $this->testsWorkingDir . $this->config->getDepDirectory() );
254
+        @mkdir( $this->testsWorkingDir . $this->config->getClassmapDirectory() );
255 255
 
256
-        @mkdir($this->testsWorkingDir . $this->config->getDepDirectory() . 'Pimple');
257
-        @mkdir($this->testsWorkingDir . $this->config->getClassmapDirectory() . 'ezyang');
256
+        @mkdir( $this->testsWorkingDir . $this->config->getDepDirectory() . 'Pimple' );
257
+        @mkdir( $this->testsWorkingDir . $this->config->getClassmapDirectory() . 'ezyang' );
258 258
 
259 259
         $packages = array();
260
-        foreach ($this->config->getPackages() as $packageString) {
261
-            $testDummyComposerDir = $this->testsWorkingDir  . 'vendor'
260
+        foreach ( $this->config->getPackages() as $packageString ) {
261
+            $testDummyComposerDir = $this->testsWorkingDir . 'vendor'
262 262
                 . DIRECTORY_SEPARATOR . $packageString;
263
-            @mkdir($testDummyComposerDir, 0777, true);
263
+            @mkdir( $testDummyComposerDir, 0777, true );
264 264
             $testDummyComposerPath = $testDummyComposerDir . DIRECTORY_SEPARATOR . 'composer.json';
265
-            $testDummyComposerContents = json_encode(new stdClass());
265
+            $testDummyComposerContents = json_encode( new stdClass() );
266 266
 
267
-            file_put_contents($testDummyComposerPath, $testDummyComposerContents);
268
-            $parsedPackage = new ComposerPackageConfig($testDummyComposerDir, $this->config->getOverrideAutoload()[$packageString]);
267
+            file_put_contents( $testDummyComposerPath, $testDummyComposerContents );
268
+            $parsedPackage = new ComposerPackageConfig( $testDummyComposerDir, $this->config->getOverrideAutoload()[ $packageString ] );
269 269
             $parsedPackage->findAutoloaders();
270
-            $packages[] = $parsedPackage;
270
+            $packages[ ] = $parsedPackage;
271 271
         }
272 272
 
273
-        $mover->deleteTargetDirs($packages);
273
+        $mover->deleteTargetDirs( $packages );
274 274
 
275
-        $this->assertDirectoryDoesNotExist($this->testsWorkingDir . $this->config->getDepDirectory() . 'Pimple');
276
-        $this->assertDirectoryDoesNotExist($this->testsWorkingDir . $this->config->getDepDirectory() . 'ezyang');
275
+        $this->assertDirectoryDoesNotExist( $this->testsWorkingDir . $this->config->getDepDirectory() . 'Pimple' );
276
+        $this->assertDirectoryDoesNotExist( $this->testsWorkingDir . $this->config->getDepDirectory() . 'ezyang' );
277 277
     }
278 278
 }
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -15,11 +15,9 @@  discard block
 block discarded – undo
15 15
  * @package BrianHenryIE\Strauss
16 16
  * @coversNothing
17 17
  */
18
-class CopierIntegrationTest extends IntegrationTestCase
19
-{
18
+class CopierIntegrationTest extends IntegrationTestCase {
20 19
 
21
-    public function testsPrepareTarget()
22
-    {
20
+    public function testsPrepareTarget() {
23 21
 
24 22
         $composerJsonString = <<<'EOD'
25 23
 {
@@ -77,8 +75,7 @@  discard block
 block discarded – undo
77 75
         $this->assertFileDoesNotExist($targetFile);
78 76
     }
79 77
 
80
-    public function testsCopy()
81
-    {
78
+    public function testsCopy() {
82 79
 
83 80
         $composerJsonString = <<<'EOD'
84 81
 {
Please login to merge, or discard this patch.
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     }
36 36
   }
37 37
 }
38
-EOD;
38
+eod;
39 39
 
40 40
         file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
41 41
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     }
95 95
   }
96 96
 }
97
-EOD;
97
+eod;
98 98
 
99 99
         file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
100 100
 
Please login to merge, or discard this patch.
vendor/brianhenryie/strauss/tests/Integration/ReplacerIntegrationTest.php 4 patches
Indentation   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -23,10 +23,10 @@  discard block
 block discarded – undo
23 23
 class ReplacerIntegrationTest extends IntegrationTestCase
24 24
 {
25 25
 
26
-    public function testReplaceNamespace()
27
-    {
26
+	public function testReplaceNamespace()
27
+	{
28 28
 
29
-        $composerJsonString = <<<'EOD'
29
+		$composerJsonString = <<<'EOD'
30 30
 {
31 31
   "name": "brianhenryie/strauss",
32 32
   "require": {
@@ -41,56 +41,56 @@  discard block
 block discarded – undo
41 41
 }
42 42
 EOD;
43 43
 
44
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
44
+		file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
45 45
 
46
-        chdir($this->testsWorkingDir);
46
+		chdir($this->testsWorkingDir);
47 47
 
48
-        exec('composer install');
48
+		exec('composer install');
49 49
 
50
-        $projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
51
-        $config = $projectComposerPackage->getStraussConfig();
50
+		$projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
51
+		$config = $projectComposerPackage->getStraussConfig();
52 52
 
53
-        $dependencies = array_map(function ($element) {
54
-            $dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
55
-            return new ComposerPackage($dir);
56
-        }, $projectComposerPackage->getRequiresNames());
53
+		$dependencies = array_map(function ($element) {
54
+			$dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
55
+			return new ComposerPackage($dir);
56
+		}, $projectComposerPackage->getRequiresNames());
57 57
 
58
-        $workingDir = $this->testsWorkingDir;
59
-        $relativeTargetDir = 'strauss' . DIRECTORY_SEPARATOR;
60
-        $absoluteTargetDir = $workingDir . $relativeTargetDir;
58
+		$workingDir = $this->testsWorkingDir;
59
+		$relativeTargetDir = 'strauss' . DIRECTORY_SEPARATOR;
60
+		$absoluteTargetDir = $workingDir . $relativeTargetDir;
61 61
 
62 62
 //        $config = $this->createStub(StraussConfig::class);
63 63
 //        $config->method('getTargetDirectory')->willReturn('strauss' . DIRECTORY_SEPARATOR);
64 64
 
65
-        $fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
66
-        $fileEnumerator->compileFileList();
67
-        $fileList = $fileEnumerator->getAllFilesAndDependencyList();
68
-        $phpFileList = $fileEnumerator->getPhpFilesAndDependencyList();
65
+		$fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
66
+		$fileEnumerator->compileFileList();
67
+		$fileList = $fileEnumerator->getAllFilesAndDependencyList();
68
+		$phpFileList = $fileEnumerator->getPhpFilesAndDependencyList();
69 69
 
70
-        $copier = new Copier($fileList, $workingDir, $relativeTargetDir);
71
-        $copier->prepareTarget();
72
-        $copier->copy();
70
+		$copier = new Copier($fileList, $workingDir, $relativeTargetDir);
71
+		$copier->prepareTarget();
72
+		$copier->copy();
73 73
 
74
-        $changeEnumerator = new ChangeEnumerator($config);
75
-        $changeEnumerator->findInFiles($absoluteTargetDir, $phpFileList);
74
+		$changeEnumerator = new ChangeEnumerator($config);
75
+		$changeEnumerator->findInFiles($absoluteTargetDir, $phpFileList);
76 76
 
77
-        $namespaces = $changeEnumerator->getDiscoveredNamespaceReplacements();
78
-        $classes = $changeEnumerator->getDiscoveredClasses();
77
+		$namespaces = $changeEnumerator->getDiscoveredNamespaceReplacements();
78
+		$classes = $changeEnumerator->getDiscoveredClasses();
79 79
 
80
-        $replacer = new Prefixer($config, $workingDir);
80
+		$replacer = new Prefixer($config, $workingDir);
81 81
 
82
-        $replacer->replaceInFiles($namespaces, $classes, $phpFileList);
82
+		$replacer->replaceInFiles($namespaces, $classes, $phpFileList);
83 83
 
84
-        $updatedFile = file_get_contents($absoluteTargetDir . 'google/apiclient/src/Client.php');
84
+		$updatedFile = file_get_contents($absoluteTargetDir . 'google/apiclient/src/Client.php');
85 85
 
86
-        $this->assertStringContainsString('use BrianHenryIE\Strauss\Google\AccessToken\Revoke;', $updatedFile);
87
-    }
86
+		$this->assertStringContainsString('use BrianHenryIE\Strauss\Google\AccessToken\Revoke;', $updatedFile);
87
+	}
88 88
 
89 89
 
90
-    public function testReplaceClass()
91
-    {
90
+	public function testReplaceClass()
91
+	{
92 92
 
93
-        $composerJsonString = <<<'EOD'
93
+		$composerJsonString = <<<'EOD'
94 94
 {
95 95
   "name": "brianhenryie/strauss",
96 96
   "require": {
@@ -106,18 +106,18 @@  discard block
 block discarded – undo
106 106
 }
107 107
 EOD;
108 108
 
109
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
109
+		file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
110 110
 
111
-        chdir($this->testsWorkingDir);
111
+		chdir($this->testsWorkingDir);
112 112
 
113
-        exec('composer install');
113
+		exec('composer install');
114 114
 
115
-        $inputInterfaceMock = $this->createMock(InputInterface::class);
116
-        $outputInterfaceMock = $this->createMock(OutputInterface::class);
115
+		$inputInterfaceMock = $this->createMock(InputInterface::class);
116
+		$outputInterfaceMock = $this->createMock(OutputInterface::class);
117 117
 
118
-        $mozartCompose = new Compose();
118
+		$mozartCompose = new Compose();
119 119
 
120
-        $result = $mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
120
+		$result = $mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
121 121
 
122 122
 
123 123
 //        $projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
@@ -150,8 +150,8 @@  discard block
 block discarded – undo
150 150
 //
151 151
 //        $replacer->replaceInFiles($namespaces, $classes, $phpFileList);
152 152
 
153
-        $updatedFile = file_get_contents($this->testsWorkingDir . '/strauss/' . 'setasign/fpdf/fpdf.php');
153
+		$updatedFile = file_get_contents($this->testsWorkingDir . '/strauss/' . 'setasign/fpdf/fpdf.php');
154 154
 
155
-        $this->assertStringContainsString('class BrianHenryIE_Strauss_FPDF', $updatedFile);
156
-    }
155
+		$this->assertStringContainsString('class BrianHenryIE_Strauss_FPDF', $updatedFile);
156
+	}
157 157
 }
Please login to merge, or discard this patch.
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -41,19 +41,19 @@  discard block
 block discarded – undo
41 41
 }
42 42
 EOD;
43 43
 
44
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
44
+        file_put_contents( $this->testsWorkingDir . '/composer.json', $composerJsonString );
45 45
 
46
-        chdir($this->testsWorkingDir);
46
+        chdir( $this->testsWorkingDir );
47 47
 
48
-        exec('composer install');
48
+        exec( 'composer install' );
49 49
 
50
-        $projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
50
+        $projectComposerPackage = new ProjectComposerPackage( $this->testsWorkingDir );
51 51
         $config = $projectComposerPackage->getStraussConfig();
52 52
 
53
-        $dependencies = array_map(function ($element) {
54
-            $dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
55
-            return new ComposerPackage($dir);
56
-        }, $projectComposerPackage->getRequiresNames());
53
+        $dependencies = array_map( function( $element ) {
54
+            $dir = $this->testsWorkingDir . 'vendor' . DIRECTORY_SEPARATOR . $element;
55
+            return new ComposerPackage( $dir );
56
+        }, $projectComposerPackage->getRequiresNames() );
57 57
 
58 58
         $workingDir = $this->testsWorkingDir;
59 59
         $relativeTargetDir = 'strauss' . DIRECTORY_SEPARATOR;
@@ -62,28 +62,28 @@  discard block
 block discarded – undo
62 62
 //        $config = $this->createStub(StraussConfig::class);
63 63
 //        $config->method('getTargetDirectory')->willReturn('strauss' . DIRECTORY_SEPARATOR);
64 64
 
65
-        $fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
65
+        $fileEnumerator = new FileEnumerator( $dependencies, $workingDir, $config );
66 66
         $fileEnumerator->compileFileList();
67 67
         $fileList = $fileEnumerator->getAllFilesAndDependencyList();
68 68
         $phpFileList = $fileEnumerator->getPhpFilesAndDependencyList();
69 69
 
70
-        $copier = new Copier($fileList, $workingDir, $relativeTargetDir);
70
+        $copier = new Copier( $fileList, $workingDir, $relativeTargetDir );
71 71
         $copier->prepareTarget();
72 72
         $copier->copy();
73 73
 
74
-        $changeEnumerator = new ChangeEnumerator($config);
75
-        $changeEnumerator->findInFiles($absoluteTargetDir, $phpFileList);
74
+        $changeEnumerator = new ChangeEnumerator( $config );
75
+        $changeEnumerator->findInFiles( $absoluteTargetDir, $phpFileList );
76 76
 
77 77
         $namespaces = $changeEnumerator->getDiscoveredNamespaceReplacements();
78 78
         $classes = $changeEnumerator->getDiscoveredClasses();
79 79
 
80
-        $replacer = new Prefixer($config, $workingDir);
80
+        $replacer = new Prefixer( $config, $workingDir );
81 81
 
82
-        $replacer->replaceInFiles($namespaces, $classes, $phpFileList);
82
+        $replacer->replaceInFiles( $namespaces, $classes, $phpFileList );
83 83
 
84
-        $updatedFile = file_get_contents($absoluteTargetDir . 'google/apiclient/src/Client.php');
84
+        $updatedFile = file_get_contents( $absoluteTargetDir . 'google/apiclient/src/Client.php' );
85 85
 
86
-        $this->assertStringContainsString('use BrianHenryIE\Strauss\Google\AccessToken\Revoke;', $updatedFile);
86
+        $this->assertStringContainsString( 'use BrianHenryIE\Strauss\Google\AccessToken\Revoke;', $updatedFile );
87 87
     }
88 88
 
89 89
 
@@ -106,18 +106,18 @@  discard block
 block discarded – undo
106 106
 }
107 107
 EOD;
108 108
 
109
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
109
+        file_put_contents( $this->testsWorkingDir . '/composer.json', $composerJsonString );
110 110
 
111
-        chdir($this->testsWorkingDir);
111
+        chdir( $this->testsWorkingDir );
112 112
 
113
-        exec('composer install');
113
+        exec( 'composer install' );
114 114
 
115
-        $inputInterfaceMock = $this->createMock(InputInterface::class);
116
-        $outputInterfaceMock = $this->createMock(OutputInterface::class);
115
+        $inputInterfaceMock = $this->createMock( InputInterface::class );
116
+        $outputInterfaceMock = $this->createMock( OutputInterface::class );
117 117
 
118 118
         $mozartCompose = new Compose();
119 119
 
120
-        $result = $mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
120
+        $result = $mozartCompose->run( $inputInterfaceMock, $outputInterfaceMock );
121 121
 
122 122
 
123 123
 //        $projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
@@ -150,8 +150,8 @@  discard block
 block discarded – undo
150 150
 //
151 151
 //        $replacer->replaceInFiles($namespaces, $classes, $phpFileList);
152 152
 
153
-        $updatedFile = file_get_contents($this->testsWorkingDir . '/strauss/' . 'setasign/fpdf/fpdf.php');
153
+        $updatedFile = file_get_contents( $this->testsWorkingDir . '/strauss/' . 'setasign/fpdf/fpdf.php' );
154 154
 
155
-        $this->assertStringContainsString('class BrianHenryIE_Strauss_FPDF', $updatedFile);
155
+        $this->assertStringContainsString( 'class BrianHenryIE_Strauss_FPDF', $updatedFile );
156 156
     }
157 157
 }
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -20,11 +20,9 @@  discard block
 block discarded – undo
20 20
  * @package BrianHenryIE\Strauss\Tests\Integration
21 21
  * @coversNothing
22 22
  */
23
-class ReplacerIntegrationTest extends IntegrationTestCase
24
-{
23
+class ReplacerIntegrationTest extends IntegrationTestCase {
25 24
 
26
-    public function testReplaceNamespace()
27
-    {
25
+    public function testReplaceNamespace() {
28 26
 
29 27
         $composerJsonString = <<<'EOD'
30 28
 {
@@ -87,8 +85,7 @@  discard block
 block discarded – undo
87 85
     }
88 86
 
89 87
 
90
-    public function testReplaceClass()
91
-    {
88
+    public function testReplaceClass() {
92 89
 
93 90
         $composerJsonString = <<<'EOD'
94 91
 {
Please login to merge, or discard this patch.
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     }
36 36
   }
37 37
 }
38
-EOD;
38
+eod;
39 39
 
40 40
         file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
41 41
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     }
95 95
   }
96 96
 }
97
-EOD;
97
+eod;
98 98
 
99 99
         file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
100 100
 
Please login to merge, or discard this patch.
vendor/brianhenryie/strauss/tests/Integration/CleanupIntegrationTest.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
  * @package BrianHenryIE\Strauss\Tests\Integration
7 7
  * @coversNothing
8 8
  */
9
-class CleanupIntegrationTest
10
-{
9
+class CleanupIntegrationTest {
11 10
 
12 11
 }
Please login to merge, or discard this patch.
brianhenryie/strauss/tests/Integration/FileEnumeratorIntegrationTest.php 4 patches
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -19,10 +19,10 @@  discard block
 block discarded – undo
19 19
 class FileEnumeratorIntegrationTest extends IntegrationTestCase
20 20
 {
21 21
 
22
-    public function testBuildFileList()
23
-    {
22
+	public function testBuildFileList()
23
+	{
24 24
 
25
-        $composerJsonString = <<<'EOD'
25
+		$composerJsonString = <<<'EOD'
26 26
 {
27 27
   "name": "brianhenryie/strauss",
28 28
   "require": {
@@ -38,41 +38,41 @@  discard block
 block discarded – undo
38 38
 }
39 39
 EOD;
40 40
 
41
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
41
+		file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
42 42
 
43
-        chdir($this->testsWorkingDir);
43
+		chdir($this->testsWorkingDir);
44 44
 
45
-        exec('composer install');
45
+		exec('composer install');
46 46
 
47
-        $projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
47
+		$projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
48 48
 
49
-        // Only one because we haven't run "flat dependency list".
50
-        $dependencies = array_map(function ($element) {
51
-            $dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
52
-            return new ComposerPackage($dir);
53
-        }, $projectComposerPackage->getRequiresNames());
49
+		// Only one because we haven't run "flat dependency list".
50
+		$dependencies = array_map(function ($element) {
51
+			$dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
52
+			return new ComposerPackage($dir);
53
+		}, $projectComposerPackage->getRequiresNames());
54 54
 
55
-        $workingDir = $this->testsWorkingDir;
56
-        $config = $this->createStub(StraussConfig::class);
55
+		$workingDir = $this->testsWorkingDir;
56
+		$config = $this->createStub(StraussConfig::class);
57 57
 
58
-        $fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
58
+		$fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
59 59
 
60
-        $fileEnumerator->compileFileList();
60
+		$fileEnumerator->compileFileList();
61 61
 
62
-        $list = array_keys($fileEnumerator->getAllFilesAndDependencyList());
62
+		$list = array_keys($fileEnumerator->getAllFilesAndDependencyList());
63 63
 
64
-        $this->assertContains('google/apiclient/src/aliases.php', $list);
65
-    }
64
+		$this->assertContains('google/apiclient/src/aliases.php', $list);
65
+	}
66 66
 
67 67
 
68
-    public function testClassmapAutoloader()
69
-    {
70
-        $this->markTestIncomplete();
71
-    }
68
+	public function testClassmapAutoloader()
69
+	{
70
+		$this->markTestIncomplete();
71
+	}
72 72
 
73 73
 
74
-    public function testFilesAutoloader()
75
-    {
76
-        $this->markTestIncomplete();
77
-    }
74
+	public function testFilesAutoloader()
75
+	{
76
+		$this->markTestIncomplete();
77
+	}
78 78
 }
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -38,30 +38,30 @@
 block discarded – undo
38 38
 }
39 39
 EOD;
40 40
 
41
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
41
+        file_put_contents( $this->testsWorkingDir . '/composer.json', $composerJsonString );
42 42
 
43
-        chdir($this->testsWorkingDir);
43
+        chdir( $this->testsWorkingDir );
44 44
 
45
-        exec('composer install');
45
+        exec( 'composer install' );
46 46
 
47
-        $projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
47
+        $projectComposerPackage = new ProjectComposerPackage( $this->testsWorkingDir );
48 48
 
49 49
         // Only one because we haven't run "flat dependency list".
50
-        $dependencies = array_map(function ($element) {
51
-            $dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
52
-            return new ComposerPackage($dir);
53
-        }, $projectComposerPackage->getRequiresNames());
50
+        $dependencies = array_map( function( $element ) {
51
+            $dir = $this->testsWorkingDir . 'vendor' . DIRECTORY_SEPARATOR . $element;
52
+            return new ComposerPackage( $dir );
53
+        }, $projectComposerPackage->getRequiresNames() );
54 54
 
55 55
         $workingDir = $this->testsWorkingDir;
56
-        $config = $this->createStub(StraussConfig::class);
56
+        $config = $this->createStub( StraussConfig::class );
57 57
 
58
-        $fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
58
+        $fileEnumerator = new FileEnumerator( $dependencies, $workingDir, $config );
59 59
 
60 60
         $fileEnumerator->compileFileList();
61 61
 
62
-        $list = array_keys($fileEnumerator->getAllFilesAndDependencyList());
62
+        $list = array_keys( $fileEnumerator->getAllFilesAndDependencyList() );
63 63
 
64
-        $this->assertContains('google/apiclient/src/aliases.php', $list);
64
+        $this->assertContains( 'google/apiclient/src/aliases.php', $list );
65 65
     }
66 66
 
67 67
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -16,11 +16,9 @@  discard block
 block discarded – undo
16 16
  * @package BrianHenryIE\Strauss
17 17
  * @coversNothing
18 18
  */
19
-class FileEnumeratorIntegrationTest extends IntegrationTestCase
20
-{
19
+class FileEnumeratorIntegrationTest extends IntegrationTestCase {
21 20
 
22
-    public function testBuildFileList()
23
-    {
21
+    public function testBuildFileList() {
24 22
 
25 23
         $composerJsonString = <<<'EOD'
26 24
 {
@@ -65,14 +63,12 @@  discard block
 block discarded – undo
65 63
     }
66 64
 
67 65
 
68
-    public function testClassmapAutoloader()
69
-    {
66
+    public function testClassmapAutoloader() {
70 67
         $this->markTestIncomplete();
71 68
     }
72 69
 
73 70
 
74
-    public function testFilesAutoloader()
75
-    {
71
+    public function testFilesAutoloader() {
76 72
         $this->markTestIncomplete();
77 73
     }
78 74
 }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     }
37 37
   }
38 38
 }
39
-EOD;
39
+eod;
40 40
 
41 41
         file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
42 42
 
Please login to merge, or discard this patch.
brianhenryie/strauss/tests/Integration/ChangeEnumeratorIntegrationTest.php 4 patches
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -18,13 +18,13 @@  discard block
 block discarded – undo
18 18
 class ChangeEnumeratorIntegrationTest extends IntegrationTestCase
19 19
 {
20 20
 
21
-    /**
22
-     * Given a list of files, find all the global classes and the namespaces.
23
-     */
24
-    public function testOne()
25
-    {
21
+	/**
22
+	 * Given a list of files, find all the global classes and the namespaces.
23
+	 */
24
+	public function testOne()
25
+	{
26 26
 
27
-        $composerJsonString = <<<'EOD'
27
+		$composerJsonString = <<<'EOD'
28 28
 {
29 29
   "name": "brianhenryie/strauss",
30 30
   "require": {
@@ -40,53 +40,53 @@  discard block
 block discarded – undo
40 40
 }
41 41
 EOD;
42 42
 
43
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
43
+		file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
44 44
 
45
-        chdir($this->testsWorkingDir);
45
+		chdir($this->testsWorkingDir);
46 46
 
47
-        exec('composer install');
47
+		exec('composer install');
48 48
 
49
-        $projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
49
+		$projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
50 50
 
51
-        $dependencies = array_map(function ($element) {
52
-            $dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
53
-            return new ComposerPackage($dir);
54
-        }, $projectComposerPackage->getRequiresNames());
51
+		$dependencies = array_map(function ($element) {
52
+			$dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
53
+			return new ComposerPackage($dir);
54
+		}, $projectComposerPackage->getRequiresNames());
55 55
 
56
-        $workingDir = $this->testsWorkingDir;
57
-        $relativeTargetDir = 'strauss' . DIRECTORY_SEPARATOR;
56
+		$workingDir = $this->testsWorkingDir;
57
+		$relativeTargetDir = 'strauss' . DIRECTORY_SEPARATOR;
58 58
 
59
-        $config = $this->createStub(StraussConfig::class);
59
+		$config = $this->createStub(StraussConfig::class);
60 60
 
61
-        $fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
61
+		$fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
62 62
 
63
-        $fileEnumerator->compileFileList();
63
+		$fileEnumerator->compileFileList();
64 64
 
65
-        $copier = new Copier($fileEnumerator->getAllFilesAndDependencyList(), $workingDir, $relativeTargetDir);
65
+		$copier = new Copier($fileEnumerator->getAllFilesAndDependencyList(), $workingDir, $relativeTargetDir);
66 66
 
67
-        $copier->prepareTarget();
67
+		$copier->prepareTarget();
68 68
 
69
-        $copier->copy();
69
+		$copier->copy();
70 70
 
71
-        $config = $this->createStub(StraussConfig::class);
71
+		$config = $this->createStub(StraussConfig::class);
72 72
 
73
-        $config->method('getExcludePackagesFromPrefixing')->willReturn(array());
74
-        $config->method('getExcludeNamespacesFromPrefixing')->willReturn(array());
73
+		$config->method('getExcludePackagesFromPrefixing')->willReturn(array());
74
+		$config->method('getExcludeNamespacesFromPrefixing')->willReturn(array());
75 75
 
76
-        $changeEnumerator = new ChangeEnumerator($config);
76
+		$changeEnumerator = new ChangeEnumerator($config);
77 77
 
78
-        $phpFileList = $fileEnumerator->getPhpFilesAndDependencyList();
78
+		$phpFileList = $fileEnumerator->getPhpFilesAndDependencyList();
79 79
 
80
-        $changeEnumerator->findInFiles($workingDir . $relativeTargetDir, $phpFileList);
80
+		$changeEnumerator->findInFiles($workingDir . $relativeTargetDir, $phpFileList);
81 81
 
82 82
 
83
-        $classes = $changeEnumerator->getDiscoveredClasses();
83
+		$classes = $changeEnumerator->getDiscoveredClasses();
84 84
 
85
-        $namespaces = $changeEnumerator->getDiscoveredNamespaceReplacements();
85
+		$namespaces = $changeEnumerator->getDiscoveredNamespaceReplacements();
86 86
 
87
-        $this->assertNotEmpty($classes);
88
-        $this->assertNotEmpty($namespaces);
87
+		$this->assertNotEmpty($classes);
88
+		$this->assertNotEmpty($namespaces);
89 89
 
90
-        $this->assertContains('Google_Task_Composer', $classes);
91
-    }
90
+		$this->assertContains('Google_Task_Composer', $classes);
91
+	}
92 92
 }
Please login to merge, or discard this patch.
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -40,53 +40,53 @@
 block discarded – undo
40 40
 }
41 41
 EOD;
42 42
 
43
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
43
+        file_put_contents( $this->testsWorkingDir . '/composer.json', $composerJsonString );
44 44
 
45
-        chdir($this->testsWorkingDir);
45
+        chdir( $this->testsWorkingDir );
46 46
 
47
-        exec('composer install');
47
+        exec( 'composer install' );
48 48
 
49
-        $projectComposerPackage = new ProjectComposerPackage($this->testsWorkingDir);
49
+        $projectComposerPackage = new ProjectComposerPackage( $this->testsWorkingDir );
50 50
 
51
-        $dependencies = array_map(function ($element) {
52
-            $dir = $this->testsWorkingDir . 'vendor'. DIRECTORY_SEPARATOR . $element;
53
-            return new ComposerPackage($dir);
54
-        }, $projectComposerPackage->getRequiresNames());
51
+        $dependencies = array_map( function( $element ) {
52
+            $dir = $this->testsWorkingDir . 'vendor' . DIRECTORY_SEPARATOR . $element;
53
+            return new ComposerPackage( $dir );
54
+        }, $projectComposerPackage->getRequiresNames() );
55 55
 
56 56
         $workingDir = $this->testsWorkingDir;
57 57
         $relativeTargetDir = 'strauss' . DIRECTORY_SEPARATOR;
58 58
 
59
-        $config = $this->createStub(StraussConfig::class);
59
+        $config = $this->createStub( StraussConfig::class );
60 60
 
61
-        $fileEnumerator = new FileEnumerator($dependencies, $workingDir, $config);
61
+        $fileEnumerator = new FileEnumerator( $dependencies, $workingDir, $config );
62 62
 
63 63
         $fileEnumerator->compileFileList();
64 64
 
65
-        $copier = new Copier($fileEnumerator->getAllFilesAndDependencyList(), $workingDir, $relativeTargetDir);
65
+        $copier = new Copier( $fileEnumerator->getAllFilesAndDependencyList(), $workingDir, $relativeTargetDir );
66 66
 
67 67
         $copier->prepareTarget();
68 68
 
69 69
         $copier->copy();
70 70
 
71
-        $config = $this->createStub(StraussConfig::class);
71
+        $config = $this->createStub( StraussConfig::class );
72 72
 
73
-        $config->method('getExcludePackagesFromPrefixing')->willReturn(array());
74
-        $config->method('getExcludeNamespacesFromPrefixing')->willReturn(array());
73
+        $config->method( 'getExcludePackagesFromPrefixing' )->willReturn( array() );
74
+        $config->method( 'getExcludeNamespacesFromPrefixing' )->willReturn( array() );
75 75
 
76
-        $changeEnumerator = new ChangeEnumerator($config);
76
+        $changeEnumerator = new ChangeEnumerator( $config );
77 77
 
78 78
         $phpFileList = $fileEnumerator->getPhpFilesAndDependencyList();
79 79
 
80
-        $changeEnumerator->findInFiles($workingDir . $relativeTargetDir, $phpFileList);
80
+        $changeEnumerator->findInFiles( $workingDir . $relativeTargetDir, $phpFileList );
81 81
 
82 82
 
83 83
         $classes = $changeEnumerator->getDiscoveredClasses();
84 84
 
85 85
         $namespaces = $changeEnumerator->getDiscoveredNamespaceReplacements();
86 86
 
87
-        $this->assertNotEmpty($classes);
88
-        $this->assertNotEmpty($namespaces);
87
+        $this->assertNotEmpty( $classes );
88
+        $this->assertNotEmpty( $namespaces );
89 89
 
90
-        $this->assertContains('Google_Task_Composer', $classes);
90
+        $this->assertContains( 'Google_Task_Composer', $classes );
91 91
     }
92 92
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,14 +15,12 @@
 block discarded – undo
15 15
  * @package BrianHenryIE\Strauss
16 16
  * @coversNothing
17 17
  */
18
-class ChangeEnumeratorIntegrationTest extends IntegrationTestCase
19
-{
18
+class ChangeEnumeratorIntegrationTest extends IntegrationTestCase {
20 19
 
21 20
     /**
22 21
      * Given a list of files, find all the global classes and the namespaces.
23 22
      */
24
-    public function testOne()
25
-    {
23
+    public function testOne() {
26 24
 
27 25
         $composerJsonString = <<<'EOD'
28 26
 {
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     }
37 37
   }
38 38
 }
39
-EOD;
39
+eod;
40 40
 
41 41
         file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
42 42
 
Please login to merge, or discard this patch.
vendor/brianhenryie/strauss/tests/Issues/MozartIssue66Test.php 4 patches
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -22,23 +22,23 @@  discard block
 block discarded – undo
22 22
 class MozartIssue66Test extends IntegrationTestCase
23 23
 {
24 24
 
25
-    /**
26
-     *
27
-     * php-di's composer.json's autoload key:
28
-     *
29
-     * "autoload": {
30
-     *    "psr-4": {
31
-     *      "DI\\": "src/"
32
-     *     },
33
-     *     "files": [
34
-     *        "src/functions.php"
35
-     *    ]
36
-     * },
37
-     */
38
-    public function testFilesAutoloaderIsUsed()
39
-    {
25
+	/**
26
+	 *
27
+	 * php-di's composer.json's autoload key:
28
+	 *
29
+	 * "autoload": {
30
+	 *    "psr-4": {
31
+	 *      "DI\\": "src/"
32
+	 *     },
33
+	 *     "files": [
34
+	 *        "src/functions.php"
35
+	 *    ]
36
+	 * },
37
+	 */
38
+	public function testFilesAutoloaderIsUsed()
39
+	{
40 40
 
41
-        $composerJsonString = <<<'EOD'
41
+		$composerJsonString = <<<'EOD'
42 42
 {
43 43
   "name": "markjaquith/mozart-bug-example",
44 44
   "require": {
@@ -64,19 +64,19 @@  discard block
 block discarded – undo
64 64
 
65 65
 EOD;
66 66
 
67
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
67
+		file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
68 68
 
69
-        chdir($this->testsWorkingDir);
69
+		chdir($this->testsWorkingDir);
70 70
 
71
-        exec('composer install');
71
+		exec('composer install');
72 72
 
73
-        $inputInterfaceMock = $this->createMock(InputInterface::class);
74
-        $outputInterfaceMock = $this->createMock(OutputInterface::class);
73
+		$inputInterfaceMock = $this->createMock(InputInterface::class);
74
+		$outputInterfaceMock = $this->createMock(OutputInterface::class);
75 75
 
76
-        $mozartCompose = new Compose();
76
+		$mozartCompose = new Compose();
77 77
 
78
-        $mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
78
+		$mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
79 79
 
80
-        $this->assertFileExists($this->testsWorkingDir . 'strauss/php-di/php-di/src/functions.php');
81
-    }
80
+		$this->assertFileExists($this->testsWorkingDir . 'strauss/php-di/php-di/src/functions.php');
81
+	}
82 82
 }
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -64,19 +64,19 @@
 block discarded – undo
64 64
 
65 65
 EOD;
66 66
 
67
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
67
+        file_put_contents( $this->testsWorkingDir . '/composer.json', $composerJsonString );
68 68
 
69
-        chdir($this->testsWorkingDir);
69
+        chdir( $this->testsWorkingDir );
70 70
 
71
-        exec('composer install');
71
+        exec( 'composer install' );
72 72
 
73
-        $inputInterfaceMock = $this->createMock(InputInterface::class);
74
-        $outputInterfaceMock = $this->createMock(OutputInterface::class);
73
+        $inputInterfaceMock = $this->createMock( InputInterface::class );
74
+        $outputInterfaceMock = $this->createMock( OutputInterface::class );
75 75
 
76 76
         $mozartCompose = new Compose();
77 77
 
78
-        $mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
78
+        $mozartCompose->run( $inputInterfaceMock, $outputInterfaceMock );
79 79
 
80
-        $this->assertFileExists($this->testsWorkingDir . 'strauss/php-di/php-di/src/functions.php');
80
+        $this->assertFileExists( $this->testsWorkingDir . 'strauss/php-di/php-di/src/functions.php' );
81 81
     }
82 82
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,8 +19,7 @@  discard block
 block discarded – undo
19 19
  * @package BrianHenryIE\Strauss\Tests\Issues
20 20
  * @coversNothing
21 21
  */
22
-class MozartIssue66Test extends IntegrationTestCase
23
-{
22
+class MozartIssue66Test extends IntegrationTestCase {
24 23
 
25 24
     /**
26 25
      *
@@ -35,8 +34,7 @@  discard block
 block discarded – undo
35 34
      *    ]
36 35
      * },
37 36
      */
38
-    public function testFilesAutoloaderIsUsed()
39
-    {
37
+    public function testFilesAutoloaderIsUsed() {
40 38
 
41 39
         $composerJsonString = <<<'EOD'
42 40
 {
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
   }
63 63
 }
64 64
 
65
-EOD;
65
+eod;
66 66
 
67 67
         file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
68 68
 
Please login to merge, or discard this patch.
vendor/brianhenryie/strauss/tests/Issues/StraussIssue8Test.php 4 patches
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -17,13 +17,13 @@  discard block
 block discarded – undo
17 17
 class StraussIssue8Test extends \BrianHenryIE\Strauss\Tests\Integration\Util\IntegrationTestCase
18 18
 {
19 19
 
20
-    /**
21
-     * @author BrianHenryIE
22
-     */
23
-    public function test_delete_vendor_files()
24
-    {
20
+	/**
21
+	 * @author BrianHenryIE
22
+	 */
23
+	public function test_delete_vendor_files()
24
+	{
25 25
 
26
-        $composerJsonString = <<<'EOD'
26
+		$composerJsonString = <<<'EOD'
27 27
 {
28 28
   "name": "brianhenryie/strauss-issue-8",
29 29
   "require": {
@@ -37,21 +37,21 @@  discard block
 block discarded – undo
37 37
 }
38 38
 EOD;
39 39
 
40
-        file_put_contents($this->testsWorkingDir . 'composer.json', $composerJsonString);
40
+		file_put_contents($this->testsWorkingDir . 'composer.json', $composerJsonString);
41 41
 
42
-        chdir($this->testsWorkingDir);
42
+		chdir($this->testsWorkingDir);
43 43
 
44
-        exec('composer install');
44
+		exec('composer install');
45 45
 
46
-        $inputInterfaceMock = $this->createMock(InputInterface::class);
47
-        $outputInterfaceMock = $this->createMock(OutputInterface::class);
46
+		$inputInterfaceMock = $this->createMock(InputInterface::class);
47
+		$outputInterfaceMock = $this->createMock(OutputInterface::class);
48 48
 
49
-        $mozartCompose = new Compose();
49
+		$mozartCompose = new Compose();
50 50
 
51
-        $result = $mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
51
+		$result = $mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
52 52
 
53
-        $this->assertEquals(0, $result);
53
+		$this->assertEquals(0, $result);
54 54
 
55
-        $this->assertFileDoesNotExist($this->testsWorkingDir. 'vendor/htmlburger/carbon-fields/core/Carbon_Fields.php');
56
-    }
55
+		$this->assertFileDoesNotExist($this->testsWorkingDir. 'vendor/htmlburger/carbon-fields/core/Carbon_Fields.php');
56
+	}
57 57
 }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -37,21 +37,21 @@
 block discarded – undo
37 37
 }
38 38
 EOD;
39 39
 
40
-        file_put_contents($this->testsWorkingDir . 'composer.json', $composerJsonString);
40
+        file_put_contents( $this->testsWorkingDir . 'composer.json', $composerJsonString );
41 41
 
42
-        chdir($this->testsWorkingDir);
42
+        chdir( $this->testsWorkingDir );
43 43
 
44
-        exec('composer install');
44
+        exec( 'composer install' );
45 45
 
46
-        $inputInterfaceMock = $this->createMock(InputInterface::class);
47
-        $outputInterfaceMock = $this->createMock(OutputInterface::class);
46
+        $inputInterfaceMock = $this->createMock( InputInterface::class );
47
+        $outputInterfaceMock = $this->createMock( OutputInterface::class );
48 48
 
49 49
         $mozartCompose = new Compose();
50 50
 
51
-        $result = $mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
51
+        $result = $mozartCompose->run( $inputInterfaceMock, $outputInterfaceMock );
52 52
 
53
-        $this->assertEquals(0, $result);
53
+        $this->assertEquals( 0, $result );
54 54
 
55
-        $this->assertFileDoesNotExist($this->testsWorkingDir. 'vendor/htmlburger/carbon-fields/core/Carbon_Fields.php');
55
+        $this->assertFileDoesNotExist( $this->testsWorkingDir . 'vendor/htmlburger/carbon-fields/core/Carbon_Fields.php' );
56 56
     }
57 57
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,14 +14,12 @@
 block discarded – undo
14 14
  * @package BrianHenryIE\Strauss\Tests\Issues
15 15
  * @coversNothing
16 16
  */
17
-class StraussIssue8Test extends \BrianHenryIE\Strauss\Tests\Integration\Util\IntegrationTestCase
18
-{
17
+class StraussIssue8Test extends \BrianHenryIE\Strauss\Tests\Integration\Util\IntegrationTestCase {
19 18
 
20 19
     /**
21 20
      * @author BrianHenryIE
22 21
      */
23
-    public function test_delete_vendor_files()
24
-    {
22
+    public function test_delete_vendor_files() {
25 23
 
26 24
         $composerJsonString = <<<'EOD'
27 25
 {
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     }
36 36
   }
37 37
 }
38
-EOD;
38
+eod;
39 39
 
40 40
         file_put_contents($this->testsWorkingDir . 'composer.json', $composerJsonString);
41 41
 
Please login to merge, or discard this patch.
vendor/brianhenryie/strauss/tests/Issues/MozartIssue130Test.php 4 patches
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -22,13 +22,13 @@  discard block
 block discarded – undo
22 22
 class MozartIssue130Test extends \BrianHenryIE\Strauss\Tests\Integration\Util\IntegrationTestCase
23 23
 {
24 24
 
25
-    /**
26
-     * @author BrianHenryIE
27
-     */
28
-    public function test_config_copied()
29
-    {
25
+	/**
26
+	 * @author BrianHenryIE
27
+	 */
28
+	public function test_config_copied()
29
+	{
30 30
 
31
-        $composerJsonString = <<<'EOD'
31
+		$composerJsonString = <<<'EOD'
32 32
 {
33 33
   "name": "brianhenryie/mozart-issue-130",
34 34
   "require": {
@@ -56,19 +56,19 @@  discard block
 block discarded – undo
56 56
 }
57 57
 EOD;
58 58
 
59
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
59
+		file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
60 60
 
61
-        chdir($this->testsWorkingDir);
61
+		chdir($this->testsWorkingDir);
62 62
 
63
-        exec('composer install');
63
+		exec('composer install');
64 64
 
65
-        $inputInterfaceMock = $this->createMock(InputInterface::class);
66
-        $outputInterfaceMock = $this->createMock(OutputInterface::class);
65
+		$inputInterfaceMock = $this->createMock(InputInterface::class);
66
+		$outputInterfaceMock = $this->createMock(OutputInterface::class);
67 67
 
68
-        $mozartCompose = new Compose();
68
+		$mozartCompose = new Compose();
69 69
 
70
-        $mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
70
+		$mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
71 71
 
72
-        $this->assertFileExists($this->testsWorkingDir .'strauss/htmlburger/carbon-fields/config.php');
73
-    }
72
+		$this->assertFileExists($this->testsWorkingDir .'strauss/htmlburger/carbon-fields/config.php');
73
+	}
74 74
 }
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -56,19 +56,19 @@
 block discarded – undo
56 56
 }
57 57
 EOD;
58 58
 
59
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
59
+        file_put_contents( $this->testsWorkingDir . '/composer.json', $composerJsonString );
60 60
 
61
-        chdir($this->testsWorkingDir);
61
+        chdir( $this->testsWorkingDir );
62 62
 
63
-        exec('composer install');
63
+        exec( 'composer install' );
64 64
 
65
-        $inputInterfaceMock = $this->createMock(InputInterface::class);
66
-        $outputInterfaceMock = $this->createMock(OutputInterface::class);
65
+        $inputInterfaceMock = $this->createMock( InputInterface::class );
66
+        $outputInterfaceMock = $this->createMock( OutputInterface::class );
67 67
 
68 68
         $mozartCompose = new Compose();
69 69
 
70
-        $mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
70
+        $mozartCompose->run( $inputInterfaceMock, $outputInterfaceMock );
71 71
 
72
-        $this->assertFileExists($this->testsWorkingDir .'strauss/htmlburger/carbon-fields/config.php');
72
+        $this->assertFileExists( $this->testsWorkingDir . 'strauss/htmlburger/carbon-fields/config.php' );
73 73
     }
74 74
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,14 +19,12 @@
 block discarded – undo
19 19
  * @package BrianHenryIE\Strauss\Tests\Issues
20 20
  * @coversNothing
21 21
  */
22
-class MozartIssue130Test extends \BrianHenryIE\Strauss\Tests\Integration\Util\IntegrationTestCase
23
-{
22
+class MozartIssue130Test extends \BrianHenryIE\Strauss\Tests\Integration\Util\IntegrationTestCase {
24 23
 
25 24
     /**
26 25
      * @author BrianHenryIE
27 26
      */
28
-    public function test_config_copied()
29
-    {
27
+    public function test_config_copied() {
30 28
 
31 29
         $composerJsonString = <<<'EOD'
32 30
 {
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     }
37 37
   }
38 38
 }
39
-EOD;
39
+eod;
40 40
 
41 41
         file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
42 42
 
Please login to merge, or discard this patch.
vendor/brianhenryie/strauss/tests/Issues/MozartIssue128Test.php 4 patches
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -18,16 +18,16 @@  discard block
 block discarded – undo
18 18
 class MozartIssue128Test extends IntegrationTestCase
19 19
 {
20 20
 
21
-    /**
22
-     * Because the neither package was a sub-package of the other, the replacing was not occurring
23
-     * throughout.
24
-     */
25
-    public function test_it_does_not_make_classname_replacement_inside_namespaced_file()
26
-    {
21
+	/**
22
+	 * Because the neither package was a sub-package of the other, the replacing was not occurring
23
+	 * throughout.
24
+	 */
25
+	public function test_it_does_not_make_classname_replacement_inside_namespaced_file()
26
+	{
27 27
 
28
-        $this->markTestSkipped("Failing on PHP 8");
28
+		$this->markTestSkipped("Failing on PHP 8");
29 29
 
30
-        $composerJsonString = <<<'EOD'
30
+		$composerJsonString = <<<'EOD'
31 31
 {
32 32
   "require": {
33 33
     "setasign/fpdf": "1.8",
@@ -45,27 +45,27 @@  discard block
 block discarded – undo
45 45
 }
46 46
 EOD;
47 47
 
48
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
48
+		file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
49 49
 
50
-        chdir($this->testsWorkingDir);
50
+		chdir($this->testsWorkingDir);
51 51
 
52
-        exec('composer install');
52
+		exec('composer install');
53 53
 
54
-        $inputInterfaceMock = $this->createMock(InputInterface::class);
55
-        $outputInterfaceMock = $this->createMock(OutputInterface::class);
54
+		$inputInterfaceMock = $this->createMock(InputInterface::class);
55
+		$outputInterfaceMock = $this->createMock(OutputInterface::class);
56 56
 
57
-        $mozartCompose = new Compose();
57
+		$mozartCompose = new Compose();
58 58
 
59
-        $result = $mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
59
+		$result = $mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
60 60
 
61
-        assert(0 === $result);
61
+		assert(0 === $result);
62 62
 
63
-        $mpdf_php = file_get_contents($this->testsWorkingDir .'strauss/setasign/fpdi/src/FpdfTpl.php');
63
+		$mpdf_php = file_get_contents($this->testsWorkingDir .'strauss/setasign/fpdi/src/FpdfTpl.php');
64 64
 
65
-        // Confirm problem is gone.
66
-        $this->assertStringNotContainsString('class FpdfTpl extends \FPDF', $mpdf_php);
65
+		// Confirm problem is gone.
66
+		$this->assertStringNotContainsString('class FpdfTpl extends \FPDF', $mpdf_php);
67 67
 
68
-        // Confirm solution is correct.
69
-        $this->assertStringContainsString('class FpdfTpl extends \Strauss_FPDF', $mpdf_php);
70
-    }
68
+		// Confirm solution is correct.
69
+		$this->assertStringContainsString('class FpdfTpl extends \Strauss_FPDF', $mpdf_php);
70
+	}
71 71
 }
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     public function test_it_does_not_make_classname_replacement_inside_namespaced_file()
26 26
     {
27 27
 
28
-        $this->markTestSkipped("Failing on PHP 8");
28
+        $this->markTestSkipped( "Failing on PHP 8" );
29 29
 
30 30
         $composerJsonString = <<<'EOD'
31 31
 {
@@ -45,27 +45,27 @@  discard block
 block discarded – undo
45 45
 }
46 46
 EOD;
47 47
 
48
-        file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
48
+        file_put_contents( $this->testsWorkingDir . '/composer.json', $composerJsonString );
49 49
 
50
-        chdir($this->testsWorkingDir);
50
+        chdir( $this->testsWorkingDir );
51 51
 
52
-        exec('composer install');
52
+        exec( 'composer install' );
53 53
 
54
-        $inputInterfaceMock = $this->createMock(InputInterface::class);
55
-        $outputInterfaceMock = $this->createMock(OutputInterface::class);
54
+        $inputInterfaceMock = $this->createMock( InputInterface::class );
55
+        $outputInterfaceMock = $this->createMock( OutputInterface::class );
56 56
 
57 57
         $mozartCompose = new Compose();
58 58
 
59
-        $result = $mozartCompose->run($inputInterfaceMock, $outputInterfaceMock);
59
+        $result = $mozartCompose->run( $inputInterfaceMock, $outputInterfaceMock );
60 60
 
61
-        assert(0 === $result);
61
+        assert( 0 === $result );
62 62
 
63
-        $mpdf_php = file_get_contents($this->testsWorkingDir .'strauss/setasign/fpdi/src/FpdfTpl.php');
63
+        $mpdf_php = file_get_contents( $this->testsWorkingDir . 'strauss/setasign/fpdi/src/FpdfTpl.php' );
64 64
 
65 65
         // Confirm problem is gone.
66
-        $this->assertStringNotContainsString('class FpdfTpl extends \FPDF', $mpdf_php);
66
+        $this->assertStringNotContainsString( 'class FpdfTpl extends \FPDF', $mpdf_php );
67 67
 
68 68
         // Confirm solution is correct.
69
-        $this->assertStringContainsString('class FpdfTpl extends \Strauss_FPDF', $mpdf_php);
69
+        $this->assertStringContainsString( 'class FpdfTpl extends \Strauss_FPDF', $mpdf_php );
70 70
     }
71 71
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,15 +15,13 @@
 block discarded – undo
15 15
  * Class MozartIssue128Test
16 16
  * @coversNothing
17 17
  */
18
-class MozartIssue128Test extends IntegrationTestCase
19
-{
18
+class MozartIssue128Test extends IntegrationTestCase {
20 19
 
21 20
     /**
22 21
      * Because the neither package was a sub-package of the other, the replacing was not occurring
23 22
      * throughout.
24 23
      */
25
-    public function test_it_does_not_make_classname_replacement_inside_namespaced_file()
26
-    {
24
+    public function test_it_does_not_make_classname_replacement_inside_namespaced_file() {
27 25
 
28 26
         $this->markTestSkipped("Failing on PHP 8");
29 27
 
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     }
37 37
   }
38 38
 }
39
-EOD;
39
+eod;
40 40
 
41 41
         file_put_contents($this->testsWorkingDir . '/composer.json', $composerJsonString);
42 42
 
Please login to merge, or discard this patch.