Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A yamaliev/hw19 #1207

Open
wants to merge 4 commits into
base: AYamaliev/main
Choose a base branch
from
Open

A yamaliev/hw19 #1207

wants to merge 4 commits into from

Conversation

Artyrcha
Copy link

No description provided.

@@ -0,0 +1,5 @@
FROM nginx
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

В базовом образе nginx уже всё это есть, нет необходимость создавать свой. Просто используйте базовый.

if ($model->load(Yii::$app->request->post()) && $model->validate()) {
$message = ['start_time' => $model->start_time, 'end_time' => $model->end_time];

$rabbit = new RabbitMq('bank_statement');
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Мы каждый раз создаём соединение с кроликом. Более того, создаём класс внутри друго-го класса. Создайте это единожды и передайте сюда как зависимость через конструктор или агрумент этого метода.

*/
public function actionIndex(): void
{
$rabbit = new RabbitMq('bank_statement');
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Мы каждый раз создаём соединение с кроликом. Более того, создаём класс внутри друго-го класса. Создайте это единожды и передайте сюда как зависимость через конструктор или агрумент этого метода.

public function actionIndex(): void
{
$rabbit = new RabbitMq('bank_statement');
(new RabbitMqConsumer($rabbit))();
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Лучше сделать метод для запуска и тогда можно будет создать экземпляр этого класса один раз и передать сюда как зависимость.

$message = ['start_time' => $model->start_time, 'end_time' => $model->end_time];

$rabbit = new RabbitMq('bank_statement');
(new RabbitMqProducer($rabbit))($message);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Лучше сделать метод для запуска и тогда можно будет создать экземпляр этого класса один раз и передать сюда как зависимость.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants