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

Продумать, что делать с методом ApplyFlags->default * #16

Open
in4s opened this issue Nov 11, 2018 · 4 comments
Assignees
Milestone

Comments

@in4s
Copy link
Contributor

in4s commented Nov 11, 2018

Сюда планировалось перенести реализацию intager флага, с возможностью замены этого метода в дочерних классах.

@in4s in4s added this to the v0.1.0 Genesis milestone Nov 11, 2018
@in4s
Copy link
Contributor Author

in4s commented Nov 19, 2018

  1. От Intager флага пока-что думаю отказаться, потому что он снижает читабельность кода:
    пример:
    $siteName = $Sites->db->selectOne("name", $siteId);
    $siteName = $Sites->db->selectOne("name", "id = {$siteId}");
    Второй заметно читабельней.

@in4s
Copy link
Contributor Author

in4s commented Nov 19, 2018

  1. Поскольку переопределяемый метод default планировалось использовать также для обработки символьных операторов ('>=', '<=', '<', '>', '!')

@in4s
Copy link
Contributor Author

in4s commented Nov 19, 2018

По вышеуказанным причинам данный метод пока-что исключается из версии 1.0.0, Код метода привожу здесь, чтобы было где искать потом:

/**
 * Метод по умолчанию, содержащий стандартные вызовы методов, не относящихся к обычным ключам
 * @version v1.0.1 2018-11-16 15:32:56
 * @param string $flag флаг
 * @return void
 */
public function default(string $flag)
{
    trigger_error("Sorry, flag \"{$flag}\" is not defined!", E_USER_ERROR);
}

@in4s
Copy link
Contributor Author

in4s commented Nov 19, 2018

Вместе с удалением метода был изменен комментарий метода applyFlag():
Старый вариант комментария:
* Основной метод класса - применяет к заданному значению заданный флаг.
* Если метод с флагом присутствует в дочернем классе, то применяет его,
* иначе запускает метод default

@in4s in4s modified the milestones: v1.0.0-alpha.1, v1.0.0 Yankee Update Nov 19, 2018
@in4s in4s self-assigned this Nov 19, 2018
@in4s in4s modified the milestones: v1.0.0 Yankee Update, BackLog Jun 8, 2021
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

No branches or pull requests

1 participant