Showing 9,653 of 9,653 total issues
The method SetOwnerText is not named in camelCase. Open
public function SetOwnerText($sOwnerText)
{
$this->sOwnerText = $sOwnerText;
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method SetCharSet is not named in camelCase. Open
public function SetCharSet($vCharSet)
{
// check for input type
if (\is_array($vCharSet)) {
$this->aCharSet = $vCharSet;
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method SetMinFontSize is not named in camelCase. Open
public function SetMinFontSize($iMinFontSize)
{
$this->iMinFontSize = $iMinFontSize;
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method SetFileType is not named in camelCase. Open
public function SetFileType($sFileType)
{
// check for valid file type
if (\in_array($sFileType, ['gif', 'png', 'jpeg'])) {
$this->sFileType = $sFileType;
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method DrawLines is not named in camelCase. Open
public function DrawLines()
{
for ($i = 0; $i < $this->iNumLines; ++$i) {
// allocate colour
if ($this->bUseColour) {
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method SetMaxFontSize is not named in camelCase. Open
public function SetMaxFontSize($iMaxFontSize)
{
$this->iMaxFontSize = $iMaxFontSize;
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method GenerateCode is not named in camelCase. Open
public function GenerateCode()
{
// reset code
$this->sCode = '';
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method _generateTreeData is not named in camelCase. Open
public function _generateTreeData(&$arr, $id, $level, &$n)
{
$arr[$id]['nlevel'] = $level;
$arr[$id]['nleft'] = ++$n;
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method DisplayShadow is not named in camelCase. Open
public function DisplayShadow($bCharShadow)
{
$this->bCharShadow = $bCharShadow;
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method _haveLargePhoto is not named in camelCase. Open
public function _haveLargePhoto($photoName)
{
return \file_exists($this->getUploadPhotoPath() . 'large/large_' . $photoName);
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method _saveFile is not named in camelCase. Open
public function _saveFile($tmpDestination, $fileName)
{
$this->savedFilename = $fileName;
$this->savedDestination = $this->uploadDir . $fileName;
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method Validate is not named in camelCase. Open
public static function Validate($sUserCode, $bCaseInsensitive = true)
{
if ($bCaseInsensitive) {
$sUserCode = mb_strtoupper($sUserCode);
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method _largePhotoTreatment is not named in camelCase. Open
public function _largePhotoTreatment($photoName)
{
/** @var Extgallery\Helper $helper */
$helper = Extgallery\Helper::getInstance();
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method _checkFile is not named in camelCase. Open
public function _checkFile($tmpDestination)
{
// $imageExtensions = array(IMAGETYPE_GIF => 'gif', IMAGETYPE_JPEG => 'jpeg', IMAGETYPE_JPG => 'jpg', IMAGETYPE_PNG => 'png');
$valid_types = [IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_PNG, IMAGETYPE_BMP];
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method _makeBorder is not named in camelCase. Open
public function _makeBorder($imageTransform)
{
/** @var Extgallery\Helper $helper */
$helper = Extgallery\Helper::getInstance();
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method _makeThumb is not named in camelCase. Open
public function _makeThumb($photoName)
{
/** @var Extgallery\Helper $helper */
$helper = Extgallery\Helper::getInstance();
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method CalculateSpacing is not named in camelCase. Open
public function CalculateSpacing()
{
$this->iSpacing = (int)($this->iWidth / $this->iNumChars);
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method SetNumChars is not named in camelCase. Open
public function SetNumChars($iNumChars)
{
$this->iNumChars = $iNumChars;
$this->CalculateSpacing();
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method SetBackgroundImages is not named in camelCase. Open
public function SetBackgroundImages($vBackgroundImages)
{
$this->vBackgroundImages = $vBackgroundImages;
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method DrawOwnerText is not named in camelCase. Open
public function DrawOwnerText()
{
// allocate owner text colour
$iBlack = \imagecolorallocate($this->oImage, 0, 0, 0);
// get height of selected font
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}