File tree Expand file tree Collapse file tree 3 files changed +0
-71
lines changed Expand file tree Collapse file tree 3 files changed +0
-71
lines changed Original file line number Diff line number Diff line change @@ -227,7 +227,6 @@ jobs:
227
227
operating-system : [ubuntu-latest, windows-latest]
228
228
script :
229
229
- " vendor/bin/phing phpstan"
230
- - " vendor/bin/phing phpstan-runtime-reflection"
231
230
- " vendor/bin/phing phpstan-static-reflection"
232
231
exclude :
233
232
- operating-system : windows-latest
Original file line number Diff line number Diff line change 315
315
</exec >
316
316
</target >
317
317
318
- <target name =" phpstan-runtime-reflection" >
319
- <property name =" phpstan.config" value =" build/phpstan-generated.neon" />
320
- <touch file =" ${ phpstan.config } " />
321
- <append
322
- destFile=" ${ phpstan.config } "
323
- text=" includes: [ phpstan.runtime-reflection.neon"
324
- append=" false"
325
- ></append >
326
- <if >
327
- <equals arg1=" ${ isPHP74 } " arg2=" true" />
328
- <then >
329
- <append
330
- destFile=" ${ phpstan.config } "
331
- text=" , ignore-gte-php7.4-errors.neon"
332
- ></append >
333
- </then >
334
- </if >
335
- <if >
336
- <os family =" windows" />
337
- <then >
338
- <append
339
- destFile=" ${ phpstan.config } "
340
- text=" , ignore-windows-runtime.neon"
341
- ></append >
342
- </then >
343
- </if >
344
- <append
345
- destFile=" ${ phpstan.config } "
346
- text=" ]"
347
- ></append >
348
- <exec
349
- executable=" php"
350
- logoutput=" true"
351
- passthru=" true"
352
- checkreturn=" true"
353
- >
354
- <arg path =" bin/phpstan" />
355
- <arg value =" clear-result-cache" />
356
- <arg value =" -c" />
357
- <arg path =" ${ phpstan.config } " />
358
- <arg value =" -q" />
359
- </exec >
360
- <exec
361
- executable=" php"
362
- logoutput=" true"
363
- passthru=" true"
364
- checkreturn=" true"
365
- >
366
- <arg value =" -d" />
367
- <arg value =" memory_limit=512M" />
368
- <arg path =" bin/phpstan" />
369
- <arg value =" analyse" />
370
- <arg value =" -c" />
371
- <arg path =" ${ phpstan.config } " />
372
- <arg value =" -l" />
373
- <arg value =" 8" />
374
- <arg path =" build/PHPStan" />
375
- <arg path =" src" />
376
- <arg path =" tests" />
377
- </exec >
378
- </target >
379
-
380
318
<target name =" phpstan-static-reflection" >
381
319
<property name =" phpstan.config" value =" build/phpstan-generated.neon" />
382
320
<touch file =" ${ phpstan.config } " />
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments