Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
<?php
<?php // phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace

// @codingStandardsIgnoreStart
use Phalcon\Mvc\Controller;

// @codingStandardsIgnoreSEnd

/**
* \DispatcherTestDefaultNoNamespaceController
* Dispatcher Controller for testing different dispatch scenarios
Expand All @@ -23,8 +20,8 @@
*/
class DispatcherTestDefaultNoNamespaceController extends Controller
{
const RETURN_VALUE_STRING = 'string';
const RETURN_VALUE_INT = 5;
public const RETURN_VALUE_STRING = 'string';
public const RETURN_VALUE_INT = 5;

public function beforeExecuteRoute()
{
Expand Down
Loading