Showing 223 of 419 total issues
Function podiumNew
has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring. Open
public function podiumNew()
{
$transaction = static::getDb()->beginTransaction();
try {
if (!$this->save()) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method actionDeletepost
has 46 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function actionDeletepost($cid = null, $fid = null, $tid = null, $pid = null)
{
$post = Post::verify($cid, $fid, $tid, $pid);
if (empty($post)) {
$this->error(Yii::t('podium/flash', 'Sorry! We can not find the post you are looking for.'));
Method search
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function search($forumId = null, $filters = null)
{
$query = static::find();
if ($forumId) {
$query->where(['forum_id' => (int)$forumId]);
Method actionDeleteposts
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function actionDeleteposts($cid = null, $fid = null, $id = null, $slug = null)
{
$thread = (new ThreadVerifier([
'categoryId' => $cid,
'forumId' => $fid,
Method addContent
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function addContent()
{
try {
$default = Content::defaultContent();
$this->db->createCommand()->batchInsert(
Function search
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
public function search($forumId = null, $filters = null)
{
$query = static::find();
if ($forumId) {
$query->where(['forum_id' => (int)$forumId]);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function remove
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
public function remove()
{
$transaction = static::getDb()->beginTransaction();
try {
$clearCache = false;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method actionDeletepoll
has 43 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function actionDeletepoll($cid = null, $fid = null, $tid = null, $pid = null)
{
$poll = Poll::find()->joinWith('thread')->where([
Poll::tableName() . '.id' => $pid,
Poll::tableName() . '.thread_id' => $tid,
Method actionNewThread
has 43 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function actionNewThread($cid = null, $fid = null)
{
if (!User::can(Rbac::PERM_CREATE_THREAD)) {
$this->error(Yii::t('podium/flash', 'Sorry! You do not have the required permission to perform this action.'));
return $this->redirect(['forum/index']);
Method addInheritedAdmin
has 43 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function addInheritedAdmin()
{
if (empty($this->module->adminId)) {
$this->type = self::TYPE_WARNING;
return Yii::t('podium/flash', 'No administrator privileges have been set!');
Method podiumDeletePosts
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function podiumDeletePosts($posts)
{
$transaction = static::getDb()->beginTransaction();
try {
foreach ($posts as $post) {
Method actionDetails
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function actionDetails()
{
$model = User::findMe();
if (empty($model)) {
return $this->redirect(['account/login']);
Method podiumMarkAllSeen
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
public static function podiumMarkAllSeen()
{
try {
$loggedId = User::loggedId();
if (empty($loggedId)) {
Method actionReport
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function actionReport($cid = null, $fid = null, $tid = null, $pid = null)
{
$post = Post::verify($cid, $fid, $tid, $pid);
if (empty($post)) {
$this->error(Yii::t('podium/flash', 'Sorry! We can not find the post you are looking for.'));
Method actionSortForum
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function actionSortForum()
{
if (!Yii::$app->request->isAjax) {
return $this->redirect(['admin/forums']);
}
Method actionAdd
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function actionAdd($id = null)
{
if (!Yii::$app->request->isAjax) {
return $this->redirect(['forum/index']);
}
Method export
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function export()
{
$tableName = Podium::getInstance()->db->quoteTableName($this->logTable);
$sql = "INSERT INTO $tableName ([[level]], [[category]], [[log_time]], [[ip]], [[message]], [[model]], [[user]])
VALUES (:level, :category, :log_time, :ip, :message, :model, :user)";
Method remove
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function remove()
{
$transaction = static::getDb()->beginTransaction();
try {
$clearCache = false;
Function reformRun
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
protected function reformRun($componentInfo, $model, $log, $view)
{
if ($this->module->userComponent !== true) {
$this->info($componentInfo);
return $this->module->goPodium();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function actionReply
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
public function actionReply($id = null)
{
$podiumUser = User::findMe();
if (Message::tooMany($podiumUser->id)) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"