Methods in classdef cc4m_logo_inline

IDFCNS-14
TitleAll methods that are declared in a classdef file need to be implemented as well.
PriorityStrongly recommended
Severity level5
DescriptionAll methods that are declared in a classdef file need to be implemented as well, and vice versa. The declaration should match the implementation, i.e. do not declare varargin but have a method with x, y, z input arguments.
RationaleCorrectly declaring and implementing methods increases the readability of your code. Inconsistency between declaration and implementation may lead to misconception.

Avoid:

methods(Static)
    varargout = getFolder()	
end

function [reportsFolder, isOk] = getFolder()
....
end

Instead use:

methods(Static)
    [reportsFolder, isOk] = getFolder()	
end

function [reportsFolder, isOk] = getFolder()
....
end