File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3232all : # # Runs everything ###
3333 @grep -E ' ^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST ) | grep -v " ###" | awk ' BEGIN {FS = ":.*?## "}; {printf "%s\n", $$1}' | xargs --open-tty $(MAKE )
3434
35+ generate : # # Generate code based on spec
36+ $(DOCKER_RUN ) php spec/generate.php
37+
3538cs-fix : # # Fix any automatically fixable code style issues
3639 $(DOCKER_RUN ) vendor/bin/phpcbf --parallel=$(THREADS ) --cache=./var/.phpcs.cache.json --standard=./phpcs.xml || $(DOCKER_RUN ) vendor/bin/phpcbf --parallel=$(THREADS ) --cache=./var/.phpcs.cache.json --standard=./phpcs.xml || $(DOCKER_RUN ) vendor/bin/phpcbf --parallel=$(THREADS ) --cache=./var/.phpcs.cache.json --standard=./phpcs.xml -vvvv
3740
Original file line number Diff line number Diff line change @@ -310,8 +310,8 @@ function amqpTypeToLength(string $type, string $e): array
310310$ connectionContent .= " } \n" ;
311311$ connectionContent .= "\n" ;
312312$ connectionContent .= " \$this->channels->get( \$frame->channel)->onFrameReceived( \$frame); \n" ;
313- $ connectionContent .= " } catch (Throwable \$e ) { \n" ;
314- $ connectionContent .= " \$this->emit('error', [ \$e ]); \n" ;
313+ $ connectionContent .= " } catch (Throwable \$error ) { \n" ;
314+ $ connectionContent .= " \$this->emit('error', [ \$error ]); \n" ;
315315$ connectionContent .= " } \n" ;
316316$ connectionContent .= " } \n" ;
317317$ connectionContent .= " }); \n" ;
You can’t perform that action at this time.
0 commit comments