@@ -17,7 +17,7 @@ |
||
17 | 17 | try { |
18 | 18 | $this->logger->info('Attempting to push message', ['data' => $data, 'topic' => $topic]); |
19 | 19 | |
20 | - $webSocketClient = new Client('localhost', '8080'); |
|
20 | + $webSocketClient = new Client('localhost', '8080'); |
|
21 | 21 | $webSocketClient->connect(); |
22 | 22 | $webSocketClient->publish($topic, json_encode($data)); |
23 | 23 | $webSocketClient->disconnect(); |
@@ -38,10 +38,12 @@ |
||
38 | 38 | $fileType = explode('/', $file->getClientMimeType()); |
39 | 39 | $originalFilename = $file->getClientOriginalName(); |
40 | 40 | |
41 | - if ($file_id) |
|
42 | - $fileEntity = $this->em->getRepository(File::class)->find($file_id); |
|
43 | - if (!$fileEntity) |
|
44 | - $fileEntity = new File(); |
|
41 | + if ($file_id) { |
|
42 | + $fileEntity = $this->em->getRepository(File::class)->find($file_id); |
|
43 | + } |
|
44 | + if (!$fileEntity) { |
|
45 | + $fileEntity = new File(); |
|
46 | + } |
|
45 | 47 | |
46 | 48 | $fileEntity->setContent($content); |
47 | 49 | $fileEntity->setFileName($originalFilename); |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | $this->manager = $entityManager; |
36 | 36 | } |
37 | 37 | |
38 | - public function __invoke(File $data, Request $request) |
|
38 | + public function __invoke(File $data, Request $request) |
|
39 | 39 | { |
40 | 40 | |
41 | 41 | try { |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | |
47 | 47 | |
48 | 48 | $content = $file->getContent(); |
49 | - $response = new StreamedResponse(function () use ($content) { |
|
49 | + $response = new StreamedResponse(function() use ($content) { |
|
50 | 50 | fputs(fopen('php://output', 'wb'), $content); |
51 | 51 | }); |
52 | 52 |
@@ -41,8 +41,9 @@ |
||
41 | 41 | try { |
42 | 42 | $file = $data; |
43 | 43 | //$file = $this->manager->getRepository(File::class)->findOneBy(['url' => $request->getPathInfo()]); |
44 | - if (!$file) |
|
45 | - throw new \Exception('Not found', 404); |
|
44 | + if (!$file) { |
|
45 | + throw new \Exception('Not found', 404); |
|
46 | + } |
|
46 | 47 | |
47 | 48 | |
48 | 49 | $content = $file->getContent(); |
@@ -13,7 +13,7 @@ |
||
13 | 13 | |
14 | 14 | public function showPdf($content) |
15 | 15 | { |
16 | - $response = new StreamedResponse(function () use ($content) { |
|
16 | + $response = new StreamedResponse(function() use ($content) { |
|
17 | 17 | fputs(fopen('php://output', 'wb'), $content); |
18 | 18 | }); |
19 | 19 |
@@ -846,8 +846,9 @@ |
||
846 | 846 | |
847 | 847 | protected function getPeopleAddress(People $people): ?array |
848 | 848 | { |
849 | - if (($address = $people->getAddress()->first()) === false) |
|
850 | - return null; |
|
849 | + if (($address = $people->getAddress()->first()) === false) { |
|
850 | + return null; |
|
851 | + } |
|
851 | 852 | |
852 | 853 | return $this->getAddress($address); |
853 | 854 | } |
@@ -483,7 +483,7 @@ discard block |
||
483 | 483 | $origin = $order->getQuote()->getCityOrigin(); |
484 | 484 | } |
485 | 485 | |
486 | - $adresO = $this->getAddress($origin); |
|
486 | + $adresO = $this->getAddress($origin); |
|
487 | 487 | if ($adresO) { |
488 | 488 | $resOrigin = $this->getAddressVars('origin', $adresO); |
489 | 489 | $data["origin_address"] = $resOrigin["origin_address"]; |
@@ -500,7 +500,7 @@ discard block |
||
500 | 500 | $destination = $order->getQuote()->getCityDestination(); |
501 | 501 | } |
502 | 502 | |
503 | - $adresD = $this->getAddress($destination); |
|
503 | + $adresD = $this->getAddress($destination); |
|
504 | 504 | if ($adresD) { |
505 | 505 | $resDestination = $this->getAddressVars('destination', $adresD); |
506 | 506 | $data["destination_address"] = $resDestination["destination_address"]; |
@@ -561,7 +561,7 @@ discard block |
||
561 | 561 | ]; |
562 | 562 | |
563 | 563 | $peopleContract = $myContract->getPeoples() |
564 | - ->filter(function ($contractPeople) { |
|
564 | + ->filter(function($contractPeople) { |
|
565 | 565 | return $contractPeople->getPeopleType() == 'Payer'; |
566 | 566 | }); |
567 | 567 | if (!$peopleContract->isEmpty()) { |
@@ -586,7 +586,7 @@ discard block |
||
586 | 586 | } |
587 | 587 | |
588 | 588 | if (isset($contact['documents']['R.G'])) { |
589 | - $data['student_rg'] = $contact['documents']['R.G']; |
|
589 | + $data['student_rg'] = $contact['documents']['R.G']; |
|
590 | 590 | } |
591 | 591 | } |
592 | 592 | |
@@ -638,7 +638,7 @@ discard block |
||
638 | 638 | //// total per month |
639 | 639 | $products = array_filter( |
640 | 640 | $contractProducts, |
641 | - function ($contractProduct) { |
|
641 | + function($contractProduct) { |
|
642 | 642 | return $contractProduct['product_subtype'] == 'Package' |
643 | 643 | && $contractProduct['billing_unit'] == 'Monthly'; |
644 | 644 | } |
@@ -656,7 +656,7 @@ discard block |
||
656 | 656 | //// contract tax |
657 | 657 | $products = array_filter( |
658 | 658 | $contractProducts, |
659 | - function ($contractProduct) { |
|
659 | + function($contractProduct) { |
|
660 | 660 | return $contractProduct['product_type'] == 'Registration' |
661 | 661 | && $contractProduct['billing_unit'] == 'Single'; |
662 | 662 | } |
@@ -802,7 +802,7 @@ discard block |
||
802 | 802 | // monthly products |
803 | 803 | |
804 | 804 | $contractProduct = $myContract->getContractProduct() |
805 | - ->filter(function ($contractProduct) { |
|
805 | + ->filter(function($contractProduct) { |
|
806 | 806 | return $contractProduct->getProduct()->getProductSubtype() == 'Package' |
807 | 807 | && $contractProduct->getProduct()->getBillingUnit() == 'Monthly' |
808 | 808 | && $contractProduct->getPrice() > 0; |
@@ -815,7 +815,7 @@ discard block |
||
815 | 815 | // contract tax |
816 | 816 | |
817 | 817 | $contractProduct = $myContract->getContractProduct() |
818 | - ->filter(function ($contractProduct) { |
|
818 | + ->filter(function($contractProduct) { |
|
819 | 819 | return $contractProduct->getProduct()->getProductType() == 'Registration' |
820 | 820 | && $contractProduct->getProduct()->getBillingUnit() == 'Single' |
821 | 821 | && $contractProduct->getPrice() > 0; |
@@ -883,15 +883,15 @@ discard block |
||
883 | 883 | |
884 | 884 | |
885 | 885 | return [ |
886 | - 'id' => $isAddress ? $address->getId() : '', |
|
887 | - 'country' => !empty($state) ? $this->fixCountryName($state->getCountry()->getCountryName()) : '', |
|
888 | - 'state' => !empty($state) ? $state->getUF() : '', |
|
889 | - 'city' => !empty($city) ? $city->getCity() : '', |
|
886 | + 'id' => $isAddress ? $address->getId() : '', |
|
887 | + 'country' => !empty($state) ? $this->fixCountryName($state->getCountry()->getCountryName()) : '', |
|
888 | + 'state' => !empty($state) ? $state->getUF() : '', |
|
889 | + 'city' => !empty($city) ? $city->getCity() : '', |
|
890 | 890 | 'district' => !empty($district) ? $district->getDistrict() : '', |
891 | - 'postalCode' => !empty($street) ? $this->fixPostalCode($street->getCep()->getCep()) : '', |
|
892 | - 'street' => !empty($street) ? $street->getStreet() : '', |
|
893 | - 'number' => $isAddress ? $address->getNumber() : '', |
|
894 | - 'complement' => $isAddress ? $address->getComplement() : '', |
|
891 | + 'postalCode' => !empty($street) ? $this->fixPostalCode($street->getCep()->getCep()) : '', |
|
892 | + 'street' => !empty($street) ? $street->getStreet() : '', |
|
893 | + 'number' => $isAddress ? $address->getNumber() : '', |
|
894 | + 'complement' => $isAddress ? $address->getComplement() : '', |
|
895 | 895 | ]; |
896 | 896 | } |
897 | 897 | |
@@ -902,14 +902,14 @@ discard block |
||
902 | 902 | |
903 | 903 | protected function fixPostalCode(int $postalCode): string |
904 | 904 | { |
905 | - $code = (string)$postalCode; |
|
905 | + $code = (string) $postalCode; |
|
906 | 906 | return strlen($code) == 7 ? '0' . $code : $code; |
907 | 907 | } |
908 | 908 | |
909 | 909 | protected function getContractPeoplePayers(MyContract $contract): array |
910 | 910 | { |
911 | 911 | $contractPeople = $contract->getPeoples() |
912 | - ->filter(function ($contractPeople) { |
|
912 | + ->filter(function($contractPeople) { |
|
913 | 913 | return $contractPeople->getPeopleType() == 'Payer' && $contractPeople->getContractPercentage() > 0; |
914 | 914 | }); |
915 | 915 |
@@ -9,24 +9,24 @@ |
||
9 | 9 | class WordPressService |
10 | 10 | { |
11 | 11 | |
12 | - public function __construct(private EntityManagerInterface $manager, private RequestStack $requestStack) {} |
|
12 | + public function __construct(private EntityManagerInterface $manager, private RequestStack $requestStack) {} |
|
13 | 13 | |
14 | - public static function getAllPosts($domain, array $input): array |
|
15 | - { |
|
14 | + public static function getAllPosts($domain, array $input): array |
|
15 | + { |
|
16 | 16 | |
17 | 17 | try { |
18 | - $client = new Client(['verify' => false]); |
|
19 | - $response = $client->get($domain . '/wp-json/wp/v2/posts', [ |
|
18 | + $client = new Client(['verify' => false]); |
|
19 | + $response = $client->get($domain . '/wp-json/wp/v2/posts', [ |
|
20 | 20 | 'query' => $input |
21 | - ]); |
|
21 | + ]); |
|
22 | 22 | |
23 | - $result = json_decode($response->getBody()); |
|
23 | + $result = json_decode($response->getBody()); |
|
24 | 24 | |
25 | - return $result; |
|
25 | + return $result; |
|
26 | 26 | } catch (\Exception $e) { |
27 | - print_r($e); |
|
27 | + print_r($e); |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | return null; |
31 | - } |
|
31 | + } |
|
32 | 32 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | 'query' => $input |
21 | 21 | ]); |
22 | 22 | |
23 | - $result = json_decode($response->getBody()); |
|
23 | + $result = json_decode($response->getBody()); |
|
24 | 24 | |
25 | 25 | return $result; |
26 | 26 | } catch (\Exception $e) { |
@@ -76,7 +76,6 @@ |
||
76 | 76 | * |
77 | 77 | * @ORM\Column(name="visibility", type="string", length=255, nullable=false) |
78 | 78 | * @Groups({"config:read","config:write"}) |
79 | - |
|
80 | 79 | */ |
81 | 80 | #[ApiFilter(filterClass: SearchFilter::class, properties: ['visibility' => 'exact'])] |
82 | 81 |
@@ -66,7 +66,6 @@ |
||
66 | 66 | * |
67 | 67 | * @ORM\Column(name="background", type="integer", nullable=true) |
68 | 68 | * @Groups({"theme:read"}) |
69 | - |
|
70 | 69 | */ |
71 | 70 | private $background; |
72 | 71 | /** |
@@ -19,13 +19,13 @@ |
||
19 | 19 | |
20 | 20 | public function getFileUrl(People $people): ?array |
21 | 21 | { |
22 | - if ($people->getImage() instanceof File) |
|
22 | + if ($people->getImage() instanceof File) |
|
23 | 23 | return [ |
24 | - 'id' => $people->getImage()->getId(), |
|
25 | - 'domain' => $this->domainService->getMainDomain(), |
|
26 | - 'url' => '/files/' . $people->getImage()->getId() . '/download' |
|
24 | + 'id' => $people->getImage()->getId(), |
|
25 | + 'domain' => $this->domainService->getMainDomain(), |
|
26 | + 'url' => '/files/' . $people->getImage()->getId() . '/download' |
|
27 | 27 | ]; |
28 | 28 | |
29 | - return null; |
|
29 | + return null; |
|
30 | 30 | } |
31 | 31 | } |
@@ -19,12 +19,13 @@ |
||
19 | 19 | |
20 | 20 | public function getFileUrl(People $people): ?array |
21 | 21 | { |
22 | - if ($people->getImage() instanceof File) |
|
23 | - return [ |
|
22 | + if ($people->getImage() instanceof File) { |
|
23 | + return [ |
|
24 | 24 | 'id' => $people->getImage()->getId(), |
25 | 25 | 'domain' => $this->domainService->getMainDomain(), |
26 | 26 | 'url' => '/files/' . $people->getImage()->getId() . '/download' |
27 | 27 | ]; |
28 | + } |
|
28 | 29 | |
29 | 30 | return null; |
30 | 31 | } |